| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| territory | String |
|
Yes | - |
| key | String |
|
Yes | - |
| code | String |
|
Yes | - |
| title | Json? |
|
No | - |
| on_used | Boolean |
|
Yes | - |
| sequence | Int? |
|
No | - |
| statistics | Json? |
|
No | - |
| parameter_values | Json? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_category_mapping | cms_category_mapping[] |
|
Yes | - |
Find zero or one Cms_category
// Get one Cms_category
const cms_category = await prisma.cms_category.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_categoryWhereUniqueInput | Yes |
Find first Cms_category
// Get one Cms_category
const cms_category = await prisma.cms_category.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_categoryWhereInput | No |
| orderBy | cms_categoryOrderByWithRelationInput[] | cms_categoryOrderByWithRelationInput | No |
| cursor | cms_categoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_categoryScalarFieldEnum | Cms_categoryScalarFieldEnum[] | No |
Find zero or more Cms_category
// Get all Cms_category
const Cms_category = await prisma.cms_category.findMany()
// Get first 10 Cms_category
const Cms_category = await prisma.cms_category.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_categoryWhereInput | No |
| orderBy | cms_categoryOrderByWithRelationInput[] | cms_categoryOrderByWithRelationInput | No |
| cursor | cms_categoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_categoryScalarFieldEnum | Cms_categoryScalarFieldEnum[] | No |
Create one Cms_category
// Create one Cms_category
const Cms_category = await prisma.cms_category.create({
data: {
// ... data to create a Cms_category
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_categoryCreateInput | cms_categoryUncheckedCreateInput | Yes |
Delete one Cms_category
// Delete one Cms_category
const Cms_category = await prisma.cms_category.delete({
where: {
// ... filter to delete one Cms_category
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_categoryWhereUniqueInput | Yes |
Update one Cms_category
// Update one Cms_category
const cms_category = await prisma.cms_category.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_categoryUpdateInput | cms_categoryUncheckedUpdateInput | Yes |
| where | cms_categoryWhereUniqueInput | Yes |
Delete zero or more Cms_category
// Delete a few Cms_category
const { count } = await prisma.cms_category.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_categoryWhereInput | No |
Update zero or one Cms_category
const { count } = await prisma.cms_category.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_categoryUpdateManyMutationInput | cms_categoryUncheckedUpdateManyInput | Yes |
| where | cms_categoryWhereInput | No |
Create or update one Cms_category
// Update or create a Cms_category
const cms_category = await prisma.cms_category.upsert({
create: {
// ... data to create a Cms_category
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_category we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_categoryWhereUniqueInput | Yes |
| create | cms_categoryCreateInput | cms_categoryUncheckedCreateInput | Yes |
| update | cms_categoryUpdateInput | cms_categoryUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| resource_id | BigInt |
|
Yes | - |
| category_id | BigInt |
|
Yes | - |
| parameter_values | Json? |
|
No | - |
| sequence | Int? |
|
No | - |
| enable | Boolean? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_category | cms_category |
|
Yes | - |
| cms_resource | cms_resource |
|
Yes | - |
Find zero or one Cms_category_mapping
// Get one Cms_category_mapping
const cms_category_mapping = await prisma.cms_category_mapping.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_category_mappingWhereUniqueInput | Yes |
Find first Cms_category_mapping
// Get one Cms_category_mapping
const cms_category_mapping = await prisma.cms_category_mapping.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_category_mappingWhereInput | No |
| orderBy | cms_category_mappingOrderByWithRelationInput[] | cms_category_mappingOrderByWithRelationInput | No |
| cursor | cms_category_mappingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_category_mappingScalarFieldEnum | Cms_category_mappingScalarFieldEnum[] | No |
Find zero or more Cms_category_mapping
// Get all Cms_category_mapping
const Cms_category_mapping = await prisma.cms_category_mapping.findMany()
// Get first 10 Cms_category_mapping
const Cms_category_mapping = await prisma.cms_category_mapping.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_category_mappingWhereInput | No |
| orderBy | cms_category_mappingOrderByWithRelationInput[] | cms_category_mappingOrderByWithRelationInput | No |
| cursor | cms_category_mappingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_category_mappingScalarFieldEnum | Cms_category_mappingScalarFieldEnum[] | No |
Create one Cms_category_mapping
// Create one Cms_category_mapping
const Cms_category_mapping = await prisma.cms_category_mapping.create({
data: {
// ... data to create a Cms_category_mapping
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_category_mappingCreateInput | cms_category_mappingUncheckedCreateInput | Yes |
Delete one Cms_category_mapping
// Delete one Cms_category_mapping
const Cms_category_mapping = await prisma.cms_category_mapping.delete({
where: {
// ... filter to delete one Cms_category_mapping
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_category_mappingWhereUniqueInput | Yes |
Update one Cms_category_mapping
// Update one Cms_category_mapping
const cms_category_mapping = await prisma.cms_category_mapping.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_category_mappingUpdateInput | cms_category_mappingUncheckedUpdateInput | Yes |
| where | cms_category_mappingWhereUniqueInput | Yes |
Delete zero or more Cms_category_mapping
// Delete a few Cms_category_mapping
const { count } = await prisma.cms_category_mapping.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_category_mappingWhereInput | No |
Update zero or one Cms_category_mapping
const { count } = await prisma.cms_category_mapping.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_category_mappingUpdateManyMutationInput | cms_category_mappingUncheckedUpdateManyInput | Yes |
| where | cms_category_mappingWhereInput | No |
Create or update one Cms_category_mapping
// Update or create a Cms_category_mapping
const cms_category_mapping = await prisma.cms_category_mapping.upsert({
create: {
// ... data to create a Cms_category_mapping
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_category_mapping we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_category_mappingWhereUniqueInput | Yes |
| create | cms_category_mappingCreateInput | cms_category_mappingUncheckedCreateInput | Yes |
| update | cms_category_mappingUpdateInput | cms_category_mappingUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| licensor_id | BigInt |
|
Yes | - |
| code | String |
|
Yes | - |
| handle | String |
|
Yes | - |
| title | Json? |
|
No | - |
| image | Json? |
|
No | - |
| description | Json? |
|
No | - |
| statistics | Json? |
|
No | - |
| parameter_values | Json? |
|
No | - |
| seo_info | Json? |
|
No | - |
| territory | String |
|
Yes | - |
| default_territory | String |
|
Yes | - |
| created_date | DateTime? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| title_en | String? |
|
No | - |
| title_zhtw | String? |
|
No | - |
| title_inid | String? |
|
No | - |
Find zero or one Cms_channel
// Get one Cms_channel
const cms_channel = await prisma.cms_channel.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_channelWhereUniqueInput | Yes |
Find first Cms_channel
// Get one Cms_channel
const cms_channel = await prisma.cms_channel.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_channelWhereInput | No |
| orderBy | cms_channelOrderByWithRelationInput[] | cms_channelOrderByWithRelationInput | No |
| cursor | cms_channelWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_channelScalarFieldEnum | Cms_channelScalarFieldEnum[] | No |
Find zero or more Cms_channel
// Get all Cms_channel
const Cms_channel = await prisma.cms_channel.findMany()
// Get first 10 Cms_channel
const Cms_channel = await prisma.cms_channel.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_channelWhereInput | No |
| orderBy | cms_channelOrderByWithRelationInput[] | cms_channelOrderByWithRelationInput | No |
| cursor | cms_channelWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_channelScalarFieldEnum | Cms_channelScalarFieldEnum[] | No |
Create one Cms_channel
// Create one Cms_channel
const Cms_channel = await prisma.cms_channel.create({
data: {
// ... data to create a Cms_channel
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_channelCreateInput | cms_channelUncheckedCreateInput | Yes |
Delete one Cms_channel
// Delete one Cms_channel
const Cms_channel = await prisma.cms_channel.delete({
where: {
// ... filter to delete one Cms_channel
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_channelWhereUniqueInput | Yes |
Update one Cms_channel
// Update one Cms_channel
const cms_channel = await prisma.cms_channel.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_channelUpdateInput | cms_channelUncheckedUpdateInput | Yes |
| where | cms_channelWhereUniqueInput | Yes |
Delete zero or more Cms_channel
// Delete a few Cms_channel
const { count } = await prisma.cms_channel.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_channelWhereInput | No |
Update zero or one Cms_channel
const { count } = await prisma.cms_channel.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_channelUpdateManyMutationInput | cms_channelUncheckedUpdateManyInput | Yes |
| where | cms_channelWhereInput | No |
Create or update one Cms_channel
// Update or create a Cms_channel
const cms_channel = await prisma.cms_channel.upsert({
create: {
// ... data to create a Cms_channel
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_channel we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_channelWhereUniqueInput | Yes |
| create | cms_channelCreateInput | cms_channelUncheckedCreateInput | Yes |
| update | cms_channelUpdateInput | cms_channelUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| key | String? |
|
No | - |
| code | String? |
|
No | - |
| title | Json? |
|
No | - |
| company_id | String |
|
Yes | - |
| territory | String |
|
Yes | - |
| default_territory | String? |
|
No | - |
| status | String |
|
Yes | - |
| detail_parameter | Json? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| title_en | String? |
|
No | - |
| title_zhtw | String? |
|
No | - |
| title_inid | String? |
|
No | - |
| cms_curation_mapping | cms_curation_mapping[] |
|
Yes | - |
Find zero or one Cms_curation
// Get one Cms_curation
const cms_curation = await prisma.cms_curation.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curationWhereUniqueInput | Yes |
Find first Cms_curation
// Get one Cms_curation
const cms_curation = await prisma.cms_curation.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curationWhereInput | No |
| orderBy | cms_curationOrderByWithRelationInput[] | cms_curationOrderByWithRelationInput | No |
| cursor | cms_curationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_curationScalarFieldEnum | Cms_curationScalarFieldEnum[] | No |
Find zero or more Cms_curation
// Get all Cms_curation
const Cms_curation = await prisma.cms_curation.findMany()
// Get first 10 Cms_curation
const Cms_curation = await prisma.cms_curation.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_curationWhereInput | No |
| orderBy | cms_curationOrderByWithRelationInput[] | cms_curationOrderByWithRelationInput | No |
| cursor | cms_curationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_curationScalarFieldEnum | Cms_curationScalarFieldEnum[] | No |
Create one Cms_curation
// Create one Cms_curation
const Cms_curation = await prisma.cms_curation.create({
data: {
// ... data to create a Cms_curation
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curationCreateInput | cms_curationUncheckedCreateInput | Yes |
Delete one Cms_curation
// Delete one Cms_curation
const Cms_curation = await prisma.cms_curation.delete({
where: {
// ... filter to delete one Cms_curation
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curationWhereUniqueInput | Yes |
Update one Cms_curation
// Update one Cms_curation
const cms_curation = await prisma.cms_curation.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curationUpdateInput | cms_curationUncheckedUpdateInput | Yes |
| where | cms_curationWhereUniqueInput | Yes |
Delete zero or more Cms_curation
// Delete a few Cms_curation
const { count } = await prisma.cms_curation.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curationWhereInput | No |
Update zero or one Cms_curation
const { count } = await prisma.cms_curation.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curationUpdateManyMutationInput | cms_curationUncheckedUpdateManyInput | Yes |
| where | cms_curationWhereInput | No |
Create or update one Cms_curation
// Update or create a Cms_curation
const cms_curation = await prisma.cms_curation.upsert({
create: {
// ... data to create a Cms_curation
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_curation we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curationWhereUniqueInput | Yes |
| create | cms_curationCreateInput | cms_curationUncheckedCreateInput | Yes |
| update | cms_curationUpdateInput | cms_curationUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| resource_id | BigInt |
|
Yes | - |
| curation_id | BigInt |
|
Yes | - |
| edited | Boolean? |
|
No | - |
| sequence | Int? |
|
No | - |
| parameter_values | Json? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_curation | cms_curation |
|
Yes | - |
Find zero or one Cms_curation_mapping
// Get one Cms_curation_mapping
const cms_curation_mapping = await prisma.cms_curation_mapping.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_mappingWhereUniqueInput | Yes |
Find first Cms_curation_mapping
// Get one Cms_curation_mapping
const cms_curation_mapping = await prisma.cms_curation_mapping.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_mappingWhereInput | No |
| orderBy | cms_curation_mappingOrderByWithRelationInput[] | cms_curation_mappingOrderByWithRelationInput | No |
| cursor | cms_curation_mappingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_curation_mappingScalarFieldEnum | Cms_curation_mappingScalarFieldEnum[] | No |
Find zero or more Cms_curation_mapping
// Get all Cms_curation_mapping
const Cms_curation_mapping = await prisma.cms_curation_mapping.findMany()
// Get first 10 Cms_curation_mapping
const Cms_curation_mapping = await prisma.cms_curation_mapping.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_curation_mappingWhereInput | No |
| orderBy | cms_curation_mappingOrderByWithRelationInput[] | cms_curation_mappingOrderByWithRelationInput | No |
| cursor | cms_curation_mappingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_curation_mappingScalarFieldEnum | Cms_curation_mappingScalarFieldEnum[] | No |
Create one Cms_curation_mapping
// Create one Cms_curation_mapping
const Cms_curation_mapping = await prisma.cms_curation_mapping.create({
data: {
// ... data to create a Cms_curation_mapping
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curation_mappingCreateInput | cms_curation_mappingUncheckedCreateInput | Yes |
Delete one Cms_curation_mapping
// Delete one Cms_curation_mapping
const Cms_curation_mapping = await prisma.cms_curation_mapping.delete({
where: {
// ... filter to delete one Cms_curation_mapping
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_mappingWhereUniqueInput | Yes |
Update one Cms_curation_mapping
// Update one Cms_curation_mapping
const cms_curation_mapping = await prisma.cms_curation_mapping.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curation_mappingUpdateInput | cms_curation_mappingUncheckedUpdateInput | Yes |
| where | cms_curation_mappingWhereUniqueInput | Yes |
Delete zero or more Cms_curation_mapping
// Delete a few Cms_curation_mapping
const { count } = await prisma.cms_curation_mapping.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_mappingWhereInput | No |
Update zero or one Cms_curation_mapping
const { count } = await prisma.cms_curation_mapping.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curation_mappingUpdateManyMutationInput | cms_curation_mappingUncheckedUpdateManyInput | Yes |
| where | cms_curation_mappingWhereInput | No |
Create or update one Cms_curation_mapping
// Update or create a Cms_curation_mapping
const cms_curation_mapping = await prisma.cms_curation_mapping.upsert({
create: {
// ... data to create a Cms_curation_mapping
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_curation_mapping we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_mappingWhereUniqueInput | Yes |
| create | cms_curation_mappingCreateInput | cms_curation_mappingUncheckedCreateInput | Yes |
| update | cms_curation_mappingUpdateInput | cms_curation_mappingUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| curation_id | BigInt |
|
Yes | - |
| title | Json? |
|
No | - |
| key | String? |
|
No | - |
| territory | String? |
|
No | - |
| description | String |
|
Yes | - |
| status | String |
|
Yes | - |
| published_date | DateTime? |
|
No | - |
| synchronized | Boolean |
|
Yes | - |
| enabled | Boolean |
|
Yes | - |
| created_user | String |
|
Yes | - |
| created_date | DateTime |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_curation_scheduling_item | cms_curation_scheduling_item[] |
|
Yes | - |
Find zero or one Cms_curation_scheduling
// Get one Cms_curation_scheduling
const cms_curation_scheduling = await prisma.cms_curation_scheduling.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_schedulingWhereUniqueInput | Yes |
Find first Cms_curation_scheduling
// Get one Cms_curation_scheduling
const cms_curation_scheduling = await prisma.cms_curation_scheduling.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_schedulingWhereInput | No |
| orderBy | cms_curation_schedulingOrderByWithRelationInput[] | cms_curation_schedulingOrderByWithRelationInput | No |
| cursor | cms_curation_schedulingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_curation_schedulingScalarFieldEnum | Cms_curation_schedulingScalarFieldEnum[] | No |
Find zero or more Cms_curation_scheduling
// Get all Cms_curation_scheduling
const Cms_curation_scheduling = await prisma.cms_curation_scheduling.findMany()
// Get first 10 Cms_curation_scheduling
const Cms_curation_scheduling = await prisma.cms_curation_scheduling.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_curation_schedulingWhereInput | No |
| orderBy | cms_curation_schedulingOrderByWithRelationInput[] | cms_curation_schedulingOrderByWithRelationInput | No |
| cursor | cms_curation_schedulingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_curation_schedulingScalarFieldEnum | Cms_curation_schedulingScalarFieldEnum[] | No |
Create one Cms_curation_scheduling
// Create one Cms_curation_scheduling
const Cms_curation_scheduling = await prisma.cms_curation_scheduling.create({
data: {
// ... data to create a Cms_curation_scheduling
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curation_schedulingCreateInput | cms_curation_schedulingUncheckedCreateInput | Yes |
Delete one Cms_curation_scheduling
// Delete one Cms_curation_scheduling
const Cms_curation_scheduling = await prisma.cms_curation_scheduling.delete({
where: {
// ... filter to delete one Cms_curation_scheduling
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_schedulingWhereUniqueInput | Yes |
Update one Cms_curation_scheduling
// Update one Cms_curation_scheduling
const cms_curation_scheduling = await prisma.cms_curation_scheduling.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curation_schedulingUpdateInput | cms_curation_schedulingUncheckedUpdateInput | Yes |
| where | cms_curation_schedulingWhereUniqueInput | Yes |
Delete zero or more Cms_curation_scheduling
// Delete a few Cms_curation_scheduling
const { count } = await prisma.cms_curation_scheduling.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_schedulingWhereInput | No |
Update zero or one Cms_curation_scheduling
const { count } = await prisma.cms_curation_scheduling.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curation_schedulingUpdateManyMutationInput | cms_curation_schedulingUncheckedUpdateManyInput | Yes |
| where | cms_curation_schedulingWhereInput | No |
Create or update one Cms_curation_scheduling
// Update or create a Cms_curation_scheduling
const cms_curation_scheduling = await prisma.cms_curation_scheduling.upsert({
create: {
// ... data to create a Cms_curation_scheduling
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_curation_scheduling we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_schedulingWhereUniqueInput | Yes |
| create | cms_curation_schedulingCreateInput | cms_curation_schedulingUncheckedCreateInput | Yes |
| update | cms_curation_schedulingUpdateInput | cms_curation_schedulingUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| parent_id | BigInt |
|
Yes | - |
| resource_id | BigInt |
|
Yes | - |
| curation_id | BigInt |
|
Yes | - |
| parameter_values | Json? |
|
No | - |
| sequence | Int? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_curation_scheduling | cms_curation_scheduling |
|
Yes | - |
Find zero or one Cms_curation_scheduling_item
// Get one Cms_curation_scheduling_item
const cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_scheduling_itemWhereUniqueInput | Yes |
Find first Cms_curation_scheduling_item
// Get one Cms_curation_scheduling_item
const cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_scheduling_itemWhereInput | No |
| orderBy | cms_curation_scheduling_itemOrderByWithRelationInput[] | cms_curation_scheduling_itemOrderByWithRelationInput | No |
| cursor | cms_curation_scheduling_itemWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_curation_scheduling_itemScalarFieldEnum | Cms_curation_scheduling_itemScalarFieldEnum[] | No |
Find zero or more Cms_curation_scheduling_item
// Get all Cms_curation_scheduling_item
const Cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.findMany()
// Get first 10 Cms_curation_scheduling_item
const Cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_curation_scheduling_itemWhereInput | No |
| orderBy | cms_curation_scheduling_itemOrderByWithRelationInput[] | cms_curation_scheduling_itemOrderByWithRelationInput | No |
| cursor | cms_curation_scheduling_itemWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_curation_scheduling_itemScalarFieldEnum | Cms_curation_scheduling_itemScalarFieldEnum[] | No |
Create one Cms_curation_scheduling_item
// Create one Cms_curation_scheduling_item
const Cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.create({
data: {
// ... data to create a Cms_curation_scheduling_item
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curation_scheduling_itemCreateInput | cms_curation_scheduling_itemUncheckedCreateInput | Yes |
Delete one Cms_curation_scheduling_item
// Delete one Cms_curation_scheduling_item
const Cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.delete({
where: {
// ... filter to delete one Cms_curation_scheduling_item
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_scheduling_itemWhereUniqueInput | Yes |
Update one Cms_curation_scheduling_item
// Update one Cms_curation_scheduling_item
const cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curation_scheduling_itemUpdateInput | cms_curation_scheduling_itemUncheckedUpdateInput | Yes |
| where | cms_curation_scheduling_itemWhereUniqueInput | Yes |
Delete zero or more Cms_curation_scheduling_item
// Delete a few Cms_curation_scheduling_item
const { count } = await prisma.cms_curation_scheduling_item.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_scheduling_itemWhereInput | No |
Update zero or one Cms_curation_scheduling_item
const { count } = await prisma.cms_curation_scheduling_item.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_curation_scheduling_itemUpdateManyMutationInput | cms_curation_scheduling_itemUncheckedUpdateManyInput | Yes |
| where | cms_curation_scheduling_itemWhereInput | No |
Create or update one Cms_curation_scheduling_item
// Update or create a Cms_curation_scheduling_item
const cms_curation_scheduling_item = await prisma.cms_curation_scheduling_item.upsert({
create: {
// ... data to create a Cms_curation_scheduling_item
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_curation_scheduling_item we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_curation_scheduling_itemWhereUniqueInput | Yes |
| create | cms_curation_scheduling_itemCreateInput | cms_curation_scheduling_itemUncheckedCreateInput | Yes |
| update | cms_curation_scheduling_itemUpdateInput | cms_curation_scheduling_itemUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| title | String |
|
Yes | - |
| sequence | Int? |
|
No | - |
| statistics | Json? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_hash_tag_mapping | cms_hash_tag_mapping[] |
|
Yes | - |
Find zero or one Cms_hash_tag
// Get one Cms_hash_tag
const cms_hash_tag = await prisma.cms_hash_tag.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tagWhereUniqueInput | Yes |
Find first Cms_hash_tag
// Get one Cms_hash_tag
const cms_hash_tag = await prisma.cms_hash_tag.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tagWhereInput | No |
| orderBy | cms_hash_tagOrderByWithRelationInput[] | cms_hash_tagOrderByWithRelationInput | No |
| cursor | cms_hash_tagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_hash_tagScalarFieldEnum | Cms_hash_tagScalarFieldEnum[] | No |
Find zero or more Cms_hash_tag
// Get all Cms_hash_tag
const Cms_hash_tag = await prisma.cms_hash_tag.findMany()
// Get first 10 Cms_hash_tag
const Cms_hash_tag = await prisma.cms_hash_tag.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tagWhereInput | No |
| orderBy | cms_hash_tagOrderByWithRelationInput[] | cms_hash_tagOrderByWithRelationInput | No |
| cursor | cms_hash_tagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_hash_tagScalarFieldEnum | Cms_hash_tagScalarFieldEnum[] | No |
Create one Cms_hash_tag
// Create one Cms_hash_tag
const Cms_hash_tag = await prisma.cms_hash_tag.create({
data: {
// ... data to create a Cms_hash_tag
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_hash_tagCreateInput | cms_hash_tagUncheckedCreateInput | Yes |
Delete one Cms_hash_tag
// Delete one Cms_hash_tag
const Cms_hash_tag = await prisma.cms_hash_tag.delete({
where: {
// ... filter to delete one Cms_hash_tag
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tagWhereUniqueInput | Yes |
Update one Cms_hash_tag
// Update one Cms_hash_tag
const cms_hash_tag = await prisma.cms_hash_tag.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_hash_tagUpdateInput | cms_hash_tagUncheckedUpdateInput | Yes |
| where | cms_hash_tagWhereUniqueInput | Yes |
Delete zero or more Cms_hash_tag
// Delete a few Cms_hash_tag
const { count } = await prisma.cms_hash_tag.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tagWhereInput | No |
Update zero or one Cms_hash_tag
const { count } = await prisma.cms_hash_tag.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_hash_tagUpdateManyMutationInput | cms_hash_tagUncheckedUpdateManyInput | Yes |
| where | cms_hash_tagWhereInput | No |
Create or update one Cms_hash_tag
// Update or create a Cms_hash_tag
const cms_hash_tag = await prisma.cms_hash_tag.upsert({
create: {
// ... data to create a Cms_hash_tag
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_hash_tag we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tagWhereUniqueInput | Yes |
| create | cms_hash_tagCreateInput | cms_hash_tagUncheckedCreateInput | Yes |
| update | cms_hash_tagUpdateInput | cms_hash_tagUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| resource_id | BigInt |
|
Yes | - |
| hash_tag_id | BigInt |
|
Yes | - |
| parameter_values | Json? |
|
No | - |
| sequence | Int? |
|
No | - |
| enable | Boolean? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_hash_tag | cms_hash_tag |
|
Yes | - |
| cms_resource | cms_resource |
|
Yes | - |
Find zero or one Cms_hash_tag_mapping
// Get one Cms_hash_tag_mapping
const cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tag_mappingWhereUniqueInput | Yes |
Find first Cms_hash_tag_mapping
// Get one Cms_hash_tag_mapping
const cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tag_mappingWhereInput | No |
| orderBy | cms_hash_tag_mappingOrderByWithRelationInput[] | cms_hash_tag_mappingOrderByWithRelationInput | No |
| cursor | cms_hash_tag_mappingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_hash_tag_mappingScalarFieldEnum | Cms_hash_tag_mappingScalarFieldEnum[] | No |
Find zero or more Cms_hash_tag_mapping
// Get all Cms_hash_tag_mapping
const Cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.findMany()
// Get first 10 Cms_hash_tag_mapping
const Cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tag_mappingWhereInput | No |
| orderBy | cms_hash_tag_mappingOrderByWithRelationInput[] | cms_hash_tag_mappingOrderByWithRelationInput | No |
| cursor | cms_hash_tag_mappingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_hash_tag_mappingScalarFieldEnum | Cms_hash_tag_mappingScalarFieldEnum[] | No |
Create one Cms_hash_tag_mapping
// Create one Cms_hash_tag_mapping
const Cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.create({
data: {
// ... data to create a Cms_hash_tag_mapping
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_hash_tag_mappingCreateInput | cms_hash_tag_mappingUncheckedCreateInput | Yes |
Delete one Cms_hash_tag_mapping
// Delete one Cms_hash_tag_mapping
const Cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.delete({
where: {
// ... filter to delete one Cms_hash_tag_mapping
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tag_mappingWhereUniqueInput | Yes |
Update one Cms_hash_tag_mapping
// Update one Cms_hash_tag_mapping
const cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_hash_tag_mappingUpdateInput | cms_hash_tag_mappingUncheckedUpdateInput | Yes |
| where | cms_hash_tag_mappingWhereUniqueInput | Yes |
Delete zero or more Cms_hash_tag_mapping
// Delete a few Cms_hash_tag_mapping
const { count } = await prisma.cms_hash_tag_mapping.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tag_mappingWhereInput | No |
Update zero or one Cms_hash_tag_mapping
const { count } = await prisma.cms_hash_tag_mapping.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_hash_tag_mappingUpdateManyMutationInput | cms_hash_tag_mappingUncheckedUpdateManyInput | Yes |
| where | cms_hash_tag_mappingWhereInput | No |
Create or update one Cms_hash_tag_mapping
// Update or create a Cms_hash_tag_mapping
const cms_hash_tag_mapping = await prisma.cms_hash_tag_mapping.upsert({
create: {
// ... data to create a Cms_hash_tag_mapping
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_hash_tag_mapping we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_hash_tag_mappingWhereUniqueInput | Yes |
| create | cms_hash_tag_mappingCreateInput | cms_hash_tag_mappingUncheckedCreateInput | Yes |
| update | cms_hash_tag_mappingUpdateInput | cms_hash_tag_mappingUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| key | String? |
|
No | - |
| title | Json? |
|
No | - |
| sequence | Int? |
|
No | - |
| statistics | Json? |
|
No | - |
| parameter_values | Json? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| title_en | String? |
|
No | - |
| title_zhtw | String? |
|
No | - |
| title_inid | String? |
|
No | - |
Find zero or one Cms_label_info
// Get one Cms_label_info
const cms_label_info = await prisma.cms_label_info.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_infoWhereUniqueInput | Yes |
Find first Cms_label_info
// Get one Cms_label_info
const cms_label_info = await prisma.cms_label_info.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_infoWhereInput | No |
| orderBy | cms_label_infoOrderByWithRelationInput[] | cms_label_infoOrderByWithRelationInput | No |
| cursor | cms_label_infoWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_label_infoScalarFieldEnum | Cms_label_infoScalarFieldEnum[] | No |
Find zero or more Cms_label_info
// Get all Cms_label_info
const Cms_label_info = await prisma.cms_label_info.findMany()
// Get first 10 Cms_label_info
const Cms_label_info = await prisma.cms_label_info.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_label_infoWhereInput | No |
| orderBy | cms_label_infoOrderByWithRelationInput[] | cms_label_infoOrderByWithRelationInput | No |
| cursor | cms_label_infoWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_label_infoScalarFieldEnum | Cms_label_infoScalarFieldEnum[] | No |
Create one Cms_label_info
// Create one Cms_label_info
const Cms_label_info = await prisma.cms_label_info.create({
data: {
// ... data to create a Cms_label_info
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_label_infoCreateInput | cms_label_infoUncheckedCreateInput | Yes |
Delete one Cms_label_info
// Delete one Cms_label_info
const Cms_label_info = await prisma.cms_label_info.delete({
where: {
// ... filter to delete one Cms_label_info
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_infoWhereUniqueInput | Yes |
Update one Cms_label_info
// Update one Cms_label_info
const cms_label_info = await prisma.cms_label_info.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_label_infoUpdateInput | cms_label_infoUncheckedUpdateInput | Yes |
| where | cms_label_infoWhereUniqueInput | Yes |
Delete zero or more Cms_label_info
// Delete a few Cms_label_info
const { count } = await prisma.cms_label_info.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_infoWhereInput | No |
Update zero or one Cms_label_info
const { count } = await prisma.cms_label_info.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_label_infoUpdateManyMutationInput | cms_label_infoUncheckedUpdateManyInput | Yes |
| where | cms_label_infoWhereInput | No |
Create or update one Cms_label_info
// Update or create a Cms_label_info
const cms_label_info = await prisma.cms_label_info.upsert({
create: {
// ... data to create a Cms_label_info
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_label_info we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_infoWhereUniqueInput | Yes |
| create | cms_label_infoCreateInput | cms_label_infoUncheckedCreateInput | Yes |
| update | cms_label_infoUpdateInput | cms_label_infoUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| mapping_type | String |
|
Yes | - |
| detail_mapping_id | String |
|
Yes | - |
| label_info_id | BigInt |
|
Yes | - |
| parameter_values | Json? |
|
No | - |
| sequence | Int? |
|
No | - |
| enable | Boolean? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one Cms_label_info_mapping
// Get one Cms_label_info_mapping
const cms_label_info_mapping = await prisma.cms_label_info_mapping.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_info_mappingWhereUniqueInput | Yes |
Find first Cms_label_info_mapping
// Get one Cms_label_info_mapping
const cms_label_info_mapping = await prisma.cms_label_info_mapping.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_info_mappingWhereInput | No |
| orderBy | cms_label_info_mappingOrderByWithRelationInput[] | cms_label_info_mappingOrderByWithRelationInput | No |
| cursor | cms_label_info_mappingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_label_info_mappingScalarFieldEnum | Cms_label_info_mappingScalarFieldEnum[] | No |
Find zero or more Cms_label_info_mapping
// Get all Cms_label_info_mapping
const Cms_label_info_mapping = await prisma.cms_label_info_mapping.findMany()
// Get first 10 Cms_label_info_mapping
const Cms_label_info_mapping = await prisma.cms_label_info_mapping.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_label_info_mappingWhereInput | No |
| orderBy | cms_label_info_mappingOrderByWithRelationInput[] | cms_label_info_mappingOrderByWithRelationInput | No |
| cursor | cms_label_info_mappingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_label_info_mappingScalarFieldEnum | Cms_label_info_mappingScalarFieldEnum[] | No |
Create one Cms_label_info_mapping
// Create one Cms_label_info_mapping
const Cms_label_info_mapping = await prisma.cms_label_info_mapping.create({
data: {
// ... data to create a Cms_label_info_mapping
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_label_info_mappingCreateInput | cms_label_info_mappingUncheckedCreateInput | Yes |
Delete one Cms_label_info_mapping
// Delete one Cms_label_info_mapping
const Cms_label_info_mapping = await prisma.cms_label_info_mapping.delete({
where: {
// ... filter to delete one Cms_label_info_mapping
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_info_mappingWhereUniqueInput | Yes |
Update one Cms_label_info_mapping
// Update one Cms_label_info_mapping
const cms_label_info_mapping = await prisma.cms_label_info_mapping.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_label_info_mappingUpdateInput | cms_label_info_mappingUncheckedUpdateInput | Yes |
| where | cms_label_info_mappingWhereUniqueInput | Yes |
Delete zero or more Cms_label_info_mapping
// Delete a few Cms_label_info_mapping
const { count } = await prisma.cms_label_info_mapping.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_info_mappingWhereInput | No |
Update zero or one Cms_label_info_mapping
const { count } = await prisma.cms_label_info_mapping.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_label_info_mappingUpdateManyMutationInput | cms_label_info_mappingUncheckedUpdateManyInput | Yes |
| where | cms_label_info_mappingWhereInput | No |
Create or update one Cms_label_info_mapping
// Update or create a Cms_label_info_mapping
const cms_label_info_mapping = await prisma.cms_label_info_mapping.upsert({
create: {
// ... data to create a Cms_label_info_mapping
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_label_info_mapping we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_label_info_mappingWhereUniqueInput | Yes |
| create | cms_label_info_mappingCreateInput | cms_label_info_mappingUncheckedCreateInput | Yes |
| update | cms_label_info_mappingUpdateInput | cms_label_info_mappingUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| resource_id | BigInt |
|
Yes | - |
| territory | String |
|
Yes | - |
| published_date | DateTime |
|
Yes | - |
| unpublished_date | DateTime |
|
Yes | - |
| show_start_date | DateTime? |
|
No | - |
| show_end_date | DateTime? |
|
No | - |
| play_start_date | DateTime? |
|
No | - |
| play_end_date | DateTime? |
|
No | - |
| parameter_values | Json? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_resource | cms_resource |
|
Yes | - |
Find zero or one Cms_published_setting
// Get one Cms_published_setting
const cms_published_setting = await prisma.cms_published_setting.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_published_settingWhereUniqueInput | Yes |
Find first Cms_published_setting
// Get one Cms_published_setting
const cms_published_setting = await prisma.cms_published_setting.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_published_settingWhereInput | No |
| orderBy | cms_published_settingOrderByWithRelationInput[] | cms_published_settingOrderByWithRelationInput | No |
| cursor | cms_published_settingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_published_settingScalarFieldEnum | Cms_published_settingScalarFieldEnum[] | No |
Find zero or more Cms_published_setting
// Get all Cms_published_setting
const Cms_published_setting = await prisma.cms_published_setting.findMany()
// Get first 10 Cms_published_setting
const Cms_published_setting = await prisma.cms_published_setting.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_published_settingWhereInput | No |
| orderBy | cms_published_settingOrderByWithRelationInput[] | cms_published_settingOrderByWithRelationInput | No |
| cursor | cms_published_settingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_published_settingScalarFieldEnum | Cms_published_settingScalarFieldEnum[] | No |
Create one Cms_published_setting
// Create one Cms_published_setting
const Cms_published_setting = await prisma.cms_published_setting.create({
data: {
// ... data to create a Cms_published_setting
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_published_settingCreateInput | cms_published_settingUncheckedCreateInput | Yes |
Delete one Cms_published_setting
// Delete one Cms_published_setting
const Cms_published_setting = await prisma.cms_published_setting.delete({
where: {
// ... filter to delete one Cms_published_setting
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_published_settingWhereUniqueInput | Yes |
Update one Cms_published_setting
// Update one Cms_published_setting
const cms_published_setting = await prisma.cms_published_setting.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_published_settingUpdateInput | cms_published_settingUncheckedUpdateInput | Yes |
| where | cms_published_settingWhereUniqueInput | Yes |
Delete zero or more Cms_published_setting
// Delete a few Cms_published_setting
const { count } = await prisma.cms_published_setting.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_published_settingWhereInput | No |
Update zero or one Cms_published_setting
const { count } = await prisma.cms_published_setting.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_published_settingUpdateManyMutationInput | cms_published_settingUncheckedUpdateManyInput | Yes |
| where | cms_published_settingWhereInput | No |
Create or update one Cms_published_setting
// Update or create a Cms_published_setting
const cms_published_setting = await prisma.cms_published_setting.upsert({
create: {
// ... data to create a Cms_published_setting
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_published_setting we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_published_settingWhereUniqueInput | Yes |
| create | cms_published_settingCreateInput | cms_published_settingUncheckedCreateInput | Yes |
| update | cms_published_settingUpdateInput | cms_published_settingUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| key | String? |
|
No | - |
| code | String? |
|
No | - |
| type | String |
|
Yes | - |
| title | Json? |
|
No | - |
| channel_code | String |
|
Yes | - |
| licensor_id | BigInt |
|
Yes | - |
| company_id | String |
|
Yes | - |
| territory | String |
|
Yes | - |
| default_territory | String? |
|
No | - |
| status | String |
|
Yes | - |
| partner_resource_id | String? |
|
No | - |
| published_date | DateTime? |
|
No | - |
| unpublished_date | DateTime? |
|
No | - |
| enable | Int |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| title_en | String? |
|
No | - |
| title_zhtw | String? |
|
No | - |
| title_inid | String? |
|
No | - |
| cms_category_mapping | cms_category_mapping[] |
|
Yes | - |
| cms_hash_tag_mapping | cms_hash_tag_mapping[] |
|
Yes | - |
| cms_published_setting | cms_published_setting[] |
|
Yes | - |
| cms_resource_import_log | cms_resource_import_log[] |
|
Yes | - |
| cms_resource_parameter | cms_resource_parameter[] |
|
Yes | - |
| cms_resource_statistics | cms_resource_statistics[] |
|
Yes | - |
Find zero or one Cms_resource
// Get one Cms_resource
const cms_resource = await prisma.cms_resource.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resourceWhereUniqueInput | Yes |
Find first Cms_resource
// Get one Cms_resource
const cms_resource = await prisma.cms_resource.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resourceWhereInput | No |
| orderBy | cms_resourceOrderByWithRelationInput[] | cms_resourceOrderByWithRelationInput | No |
| cursor | cms_resourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_resourceScalarFieldEnum | Cms_resourceScalarFieldEnum[] | No |
Find zero or more Cms_resource
// Get all Cms_resource
const Cms_resource = await prisma.cms_resource.findMany()
// Get first 10 Cms_resource
const Cms_resource = await prisma.cms_resource.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_resourceWhereInput | No |
| orderBy | cms_resourceOrderByWithRelationInput[] | cms_resourceOrderByWithRelationInput | No |
| cursor | cms_resourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_resourceScalarFieldEnum | Cms_resourceScalarFieldEnum[] | No |
Create one Cms_resource
// Create one Cms_resource
const Cms_resource = await prisma.cms_resource.create({
data: {
// ... data to create a Cms_resource
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resourceCreateInput | cms_resourceUncheckedCreateInput | Yes |
Delete one Cms_resource
// Delete one Cms_resource
const Cms_resource = await prisma.cms_resource.delete({
where: {
// ... filter to delete one Cms_resource
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resourceWhereUniqueInput | Yes |
Update one Cms_resource
// Update one Cms_resource
const cms_resource = await prisma.cms_resource.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resourceUpdateInput | cms_resourceUncheckedUpdateInput | Yes |
| where | cms_resourceWhereUniqueInput | Yes |
Delete zero or more Cms_resource
// Delete a few Cms_resource
const { count } = await prisma.cms_resource.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resourceWhereInput | No |
Update zero or one Cms_resource
const { count } = await prisma.cms_resource.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resourceUpdateManyMutationInput | cms_resourceUncheckedUpdateManyInput | Yes |
| where | cms_resourceWhereInput | No |
Create or update one Cms_resource
// Update or create a Cms_resource
const cms_resource = await prisma.cms_resource.upsert({
create: {
// ... data to create a Cms_resource
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_resource we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resourceWhereUniqueInput | Yes |
| create | cms_resourceCreateInput | cms_resourceUncheckedCreateInput | Yes |
| update | cms_resourceUpdateInput | cms_resourceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| partner_resource_id | String? |
|
No | - |
| channel_code | String? |
|
No | - |
| resource_id | BigInt? |
|
No | - |
| execute_process | String |
|
Yes | - |
| execute_status | String |
|
Yes | - |
| imp_result | Json? |
|
No | - |
| poster_import | Int |
|
Yes | - |
| poster_type | String? |
|
No | - |
| video_import | Int |
|
Yes | - |
| oa_task_job_id | BigInt |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_resource | cms_resource? |
|
No | - |
Find zero or one Cms_resource_import_log
// Get one Cms_resource_import_log
const cms_resource_import_log = await prisma.cms_resource_import_log.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_import_logWhereUniqueInput | Yes |
Find first Cms_resource_import_log
// Get one Cms_resource_import_log
const cms_resource_import_log = await prisma.cms_resource_import_log.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_import_logWhereInput | No |
| orderBy | cms_resource_import_logOrderByWithRelationInput[] | cms_resource_import_logOrderByWithRelationInput | No |
| cursor | cms_resource_import_logWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_resource_import_logScalarFieldEnum | Cms_resource_import_logScalarFieldEnum[] | No |
Find zero or more Cms_resource_import_log
// Get all Cms_resource_import_log
const Cms_resource_import_log = await prisma.cms_resource_import_log.findMany()
// Get first 10 Cms_resource_import_log
const Cms_resource_import_log = await prisma.cms_resource_import_log.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_resource_import_logWhereInput | No |
| orderBy | cms_resource_import_logOrderByWithRelationInput[] | cms_resource_import_logOrderByWithRelationInput | No |
| cursor | cms_resource_import_logWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_resource_import_logScalarFieldEnum | Cms_resource_import_logScalarFieldEnum[] | No |
Create one Cms_resource_import_log
// Create one Cms_resource_import_log
const Cms_resource_import_log = await prisma.cms_resource_import_log.create({
data: {
// ... data to create a Cms_resource_import_log
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resource_import_logCreateInput | cms_resource_import_logUncheckedCreateInput | Yes |
Delete one Cms_resource_import_log
// Delete one Cms_resource_import_log
const Cms_resource_import_log = await prisma.cms_resource_import_log.delete({
where: {
// ... filter to delete one Cms_resource_import_log
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_import_logWhereUniqueInput | Yes |
Update one Cms_resource_import_log
// Update one Cms_resource_import_log
const cms_resource_import_log = await prisma.cms_resource_import_log.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resource_import_logUpdateInput | cms_resource_import_logUncheckedUpdateInput | Yes |
| where | cms_resource_import_logWhereUniqueInput | Yes |
Delete zero or more Cms_resource_import_log
// Delete a few Cms_resource_import_log
const { count } = await prisma.cms_resource_import_log.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_import_logWhereInput | No |
Update zero or one Cms_resource_import_log
const { count } = await prisma.cms_resource_import_log.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resource_import_logUpdateManyMutationInput | cms_resource_import_logUncheckedUpdateManyInput | Yes |
| where | cms_resource_import_logWhereInput | No |
Create or update one Cms_resource_import_log
// Update or create a Cms_resource_import_log
const cms_resource_import_log = await prisma.cms_resource_import_log.upsert({
create: {
// ... data to create a Cms_resource_import_log
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_resource_import_log we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_import_logWhereUniqueInput | Yes |
| create | cms_resource_import_logCreateInput | cms_resource_import_logUncheckedCreateInput | Yes |
| update | cms_resource_import_logUpdateInput | cms_resource_import_logUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| resource_id | BigInt |
|
Yes | - |
| territory | String |
|
Yes | - |
| master_code | String? |
|
No | - |
| master_key | String? |
|
No | - |
| master_type | String? |
|
No | - |
| video_id | String? |
|
No | - |
| duration | String? |
|
No | - |
| show_direction | String? |
|
No | - |
| sub_statuses | Json? |
|
No | - |
| detail | Json? |
|
No | - |
| description | Json? |
|
No | - |
| player_info | Json? |
|
No | - |
| posters | Json? |
|
No | - |
| category_info | Json? |
|
No | - |
| label_info | Json? |
|
No | - |
| hash_tag_info | Json? |
|
No | - |
| seo_info | Json? |
|
No | - |
| parameter_values | Json? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| artwork_status | String? |
|
No | - |
| transcoding_status | String? |
|
No | - |
| cms_resource | cms_resource |
|
Yes | - |
Find zero or one Cms_resource_parameter
// Get one Cms_resource_parameter
const cms_resource_parameter = await prisma.cms_resource_parameter.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_parameterWhereUniqueInput | Yes |
Find first Cms_resource_parameter
// Get one Cms_resource_parameter
const cms_resource_parameter = await prisma.cms_resource_parameter.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_parameterWhereInput | No |
| orderBy | cms_resource_parameterOrderByWithRelationInput[] | cms_resource_parameterOrderByWithRelationInput | No |
| cursor | cms_resource_parameterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_resource_parameterScalarFieldEnum | Cms_resource_parameterScalarFieldEnum[] | No |
Find zero or more Cms_resource_parameter
// Get all Cms_resource_parameter
const Cms_resource_parameter = await prisma.cms_resource_parameter.findMany()
// Get first 10 Cms_resource_parameter
const Cms_resource_parameter = await prisma.cms_resource_parameter.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_resource_parameterWhereInput | No |
| orderBy | cms_resource_parameterOrderByWithRelationInput[] | cms_resource_parameterOrderByWithRelationInput | No |
| cursor | cms_resource_parameterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_resource_parameterScalarFieldEnum | Cms_resource_parameterScalarFieldEnum[] | No |
Create one Cms_resource_parameter
// Create one Cms_resource_parameter
const Cms_resource_parameter = await prisma.cms_resource_parameter.create({
data: {
// ... data to create a Cms_resource_parameter
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resource_parameterCreateInput | cms_resource_parameterUncheckedCreateInput | Yes |
Delete one Cms_resource_parameter
// Delete one Cms_resource_parameter
const Cms_resource_parameter = await prisma.cms_resource_parameter.delete({
where: {
// ... filter to delete one Cms_resource_parameter
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_parameterWhereUniqueInput | Yes |
Update one Cms_resource_parameter
// Update one Cms_resource_parameter
const cms_resource_parameter = await prisma.cms_resource_parameter.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resource_parameterUpdateInput | cms_resource_parameterUncheckedUpdateInput | Yes |
| where | cms_resource_parameterWhereUniqueInput | Yes |
Delete zero or more Cms_resource_parameter
// Delete a few Cms_resource_parameter
const { count } = await prisma.cms_resource_parameter.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_parameterWhereInput | No |
Update zero or one Cms_resource_parameter
const { count } = await prisma.cms_resource_parameter.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resource_parameterUpdateManyMutationInput | cms_resource_parameterUncheckedUpdateManyInput | Yes |
| where | cms_resource_parameterWhereInput | No |
Create or update one Cms_resource_parameter
// Update or create a Cms_resource_parameter
const cms_resource_parameter = await prisma.cms_resource_parameter.upsert({
create: {
// ... data to create a Cms_resource_parameter
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_resource_parameter we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_parameterWhereUniqueInput | Yes |
| create | cms_resource_parameterCreateInput | cms_resource_parameterUncheckedCreateInput | Yes |
| update | cms_resource_parameterUpdateInput | cms_resource_parameterUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| resource_id | BigInt |
|
Yes | - |
| territory | String |
|
Yes | - |
| statistics | Json? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| cms_resource | cms_resource |
|
Yes | - |
Find zero or one Cms_resource_statistics
// Get one Cms_resource_statistics
const cms_resource_statistics = await prisma.cms_resource_statistics.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_statisticsWhereUniqueInput | Yes |
Find first Cms_resource_statistics
// Get one Cms_resource_statistics
const cms_resource_statistics = await prisma.cms_resource_statistics.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_statisticsWhereInput | No |
| orderBy | cms_resource_statisticsOrderByWithRelationInput[] | cms_resource_statisticsOrderByWithRelationInput | No |
| cursor | cms_resource_statisticsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_resource_statisticsScalarFieldEnum | Cms_resource_statisticsScalarFieldEnum[] | No |
Find zero or more Cms_resource_statistics
// Get all Cms_resource_statistics
const Cms_resource_statistics = await prisma.cms_resource_statistics.findMany()
// Get first 10 Cms_resource_statistics
const Cms_resource_statistics = await prisma.cms_resource_statistics.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | cms_resource_statisticsWhereInput | No |
| orderBy | cms_resource_statisticsOrderByWithRelationInput[] | cms_resource_statisticsOrderByWithRelationInput | No |
| cursor | cms_resource_statisticsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Cms_resource_statisticsScalarFieldEnum | Cms_resource_statisticsScalarFieldEnum[] | No |
Create one Cms_resource_statistics
// Create one Cms_resource_statistics
const Cms_resource_statistics = await prisma.cms_resource_statistics.create({
data: {
// ... data to create a Cms_resource_statistics
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resource_statisticsCreateInput | cms_resource_statisticsUncheckedCreateInput | Yes |
Delete one Cms_resource_statistics
// Delete one Cms_resource_statistics
const Cms_resource_statistics = await prisma.cms_resource_statistics.delete({
where: {
// ... filter to delete one Cms_resource_statistics
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_statisticsWhereUniqueInput | Yes |
Update one Cms_resource_statistics
// Update one Cms_resource_statistics
const cms_resource_statistics = await prisma.cms_resource_statistics.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resource_statisticsUpdateInput | cms_resource_statisticsUncheckedUpdateInput | Yes |
| where | cms_resource_statisticsWhereUniqueInput | Yes |
Delete zero or more Cms_resource_statistics
// Delete a few Cms_resource_statistics
const { count } = await prisma.cms_resource_statistics.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_statisticsWhereInput | No |
Update zero or one Cms_resource_statistics
const { count } = await prisma.cms_resource_statistics.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | cms_resource_statisticsUpdateManyMutationInput | cms_resource_statisticsUncheckedUpdateManyInput | Yes |
| where | cms_resource_statisticsWhereInput | No |
Create or update one Cms_resource_statistics
// Update or create a Cms_resource_statistics
const cms_resource_statistics = await prisma.cms_resource_statistics.upsert({
create: {
// ... data to create a Cms_resource_statistics
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Cms_resource_statistics we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | cms_resource_statisticsWhereUniqueInput | Yes |
| create | cms_resource_statisticsCreateInput | cms_resource_statisticsUncheckedCreateInput | Yes |
| update | cms_resource_statisticsUpdateInput | cms_resource_statisticsUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| territory | String |
|
Yes | - |
| function_name | String |
|
Yes | - |
| mapping_id | String |
|
Yes | - |
| sub_function_name | String? |
|
No | - |
| sub_mapping_id | String? |
|
No | - |
| comment | String |
|
Yes | - |
| action | String |
|
Yes | - |
| before | Json? |
|
No | - |
| after | Json? |
|
No | - |
| jira_no | String? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one Oa_change_logs
// Get one Oa_change_logs
const oa_change_logs = await prisma.oa_change_logs.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_change_logsWhereUniqueInput | Yes |
Find first Oa_change_logs
// Get one Oa_change_logs
const oa_change_logs = await prisma.oa_change_logs.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_change_logsWhereInput | No |
| orderBy | oa_change_logsOrderByWithRelationInput[] | oa_change_logsOrderByWithRelationInput | No |
| cursor | oa_change_logsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_change_logsScalarFieldEnum | Oa_change_logsScalarFieldEnum[] | No |
Find zero or more Oa_change_logs
// Get all Oa_change_logs
const Oa_change_logs = await prisma.oa_change_logs.findMany()
// Get first 10 Oa_change_logs
const Oa_change_logs = await prisma.oa_change_logs.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | oa_change_logsWhereInput | No |
| orderBy | oa_change_logsOrderByWithRelationInput[] | oa_change_logsOrderByWithRelationInput | No |
| cursor | oa_change_logsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_change_logsScalarFieldEnum | Oa_change_logsScalarFieldEnum[] | No |
Create one Oa_change_logs
// Create one Oa_change_logs
const Oa_change_logs = await prisma.oa_change_logs.create({
data: {
// ... data to create a Oa_change_logs
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_change_logsCreateInput | oa_change_logsUncheckedCreateInput | Yes |
Delete one Oa_change_logs
// Delete one Oa_change_logs
const Oa_change_logs = await prisma.oa_change_logs.delete({
where: {
// ... filter to delete one Oa_change_logs
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_change_logsWhereUniqueInput | Yes |
Update one Oa_change_logs
// Update one Oa_change_logs
const oa_change_logs = await prisma.oa_change_logs.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_change_logsUpdateInput | oa_change_logsUncheckedUpdateInput | Yes |
| where | oa_change_logsWhereUniqueInput | Yes |
Delete zero or more Oa_change_logs
// Delete a few Oa_change_logs
const { count } = await prisma.oa_change_logs.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_change_logsWhereInput | No |
Update zero or one Oa_change_logs
const { count } = await prisma.oa_change_logs.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_change_logsUpdateManyMutationInput | oa_change_logsUncheckedUpdateManyInput | Yes |
| where | oa_change_logsWhereInput | No |
Create or update one Oa_change_logs
// Update or create a Oa_change_logs
const oa_change_logs = await prisma.oa_change_logs.upsert({
create: {
// ... data to create a Oa_change_logs
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Oa_change_logs we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_change_logsWhereUniqueInput | Yes |
| create | oa_change_logsCreateInput | oa_change_logsUncheckedCreateInput | Yes |
| update | oa_change_logsUpdateInput | oa_change_logsUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| licensor_key | String |
|
Yes | - |
| code | String? |
|
No | - |
| company_name | String? |
|
No | - |
| category | String? |
|
No | - |
| contact_name | String? |
|
No | - |
| contact_phone | String? |
|
No | - |
| contact_email | String? |
|
No | - |
| contact_mobile | String? |
|
No | - |
| s3_bucket_name | String? |
|
No | - |
| enable | Boolean? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one Oa_licensor
// Get one Oa_licensor
const oa_licensor = await prisma.oa_licensor.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_licensorWhereUniqueInput | Yes |
Find first Oa_licensor
// Get one Oa_licensor
const oa_licensor = await prisma.oa_licensor.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_licensorWhereInput | No |
| orderBy | oa_licensorOrderByWithRelationInput[] | oa_licensorOrderByWithRelationInput | No |
| cursor | oa_licensorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_licensorScalarFieldEnum | Oa_licensorScalarFieldEnum[] | No |
Find zero or more Oa_licensor
// Get all Oa_licensor
const Oa_licensor = await prisma.oa_licensor.findMany()
// Get first 10 Oa_licensor
const Oa_licensor = await prisma.oa_licensor.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | oa_licensorWhereInput | No |
| orderBy | oa_licensorOrderByWithRelationInput[] | oa_licensorOrderByWithRelationInput | No |
| cursor | oa_licensorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_licensorScalarFieldEnum | Oa_licensorScalarFieldEnum[] | No |
Create one Oa_licensor
// Create one Oa_licensor
const Oa_licensor = await prisma.oa_licensor.create({
data: {
// ... data to create a Oa_licensor
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_licensorCreateInput | oa_licensorUncheckedCreateInput | Yes |
Delete one Oa_licensor
// Delete one Oa_licensor
const Oa_licensor = await prisma.oa_licensor.delete({
where: {
// ... filter to delete one Oa_licensor
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_licensorWhereUniqueInput | Yes |
Update one Oa_licensor
// Update one Oa_licensor
const oa_licensor = await prisma.oa_licensor.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_licensorUpdateInput | oa_licensorUncheckedUpdateInput | Yes |
| where | oa_licensorWhereUniqueInput | Yes |
Delete zero or more Oa_licensor
// Delete a few Oa_licensor
const { count } = await prisma.oa_licensor.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_licensorWhereInput | No |
Update zero or one Oa_licensor
const { count } = await prisma.oa_licensor.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_licensorUpdateManyMutationInput | oa_licensorUncheckedUpdateManyInput | Yes |
| where | oa_licensorWhereInput | No |
Create or update one Oa_licensor
// Update or create a Oa_licensor
const oa_licensor = await prisma.oa_licensor.upsert({
create: {
// ... data to create a Oa_licensor
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Oa_licensor we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_licensorWhereUniqueInput | Yes |
| create | oa_licensorCreateInput | oa_licensorUncheckedCreateInput | Yes |
| update | oa_licensorUpdateInput | oa_licensorUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| code_type | String |
|
Yes | - |
| territory | String |
|
Yes | - |
| code_type_name | Json? |
|
No | - |
| show_sequence | Int |
|
Yes | - |
| used_flag | Boolean |
|
Yes | - |
| up_level_type | String? |
|
No | - |
| memo | String? |
|
No | - |
| enable | Boolean |
|
Yes | - |
| created_user | String |
|
Yes | - |
| created_date | DateTime |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| code_type_name_local | String? |
|
No | - |
| code_type_name_eng | String? |
|
No | - |
Find zero or one Oa_system_code
// Get one Oa_system_code
const oa_system_code = await prisma.oa_system_code.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_codeWhereUniqueInput | Yes |
Find first Oa_system_code
// Get one Oa_system_code
const oa_system_code = await prisma.oa_system_code.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_codeWhereInput | No |
| orderBy | oa_system_codeOrderByWithRelationInput[] | oa_system_codeOrderByWithRelationInput | No |
| cursor | oa_system_codeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_system_codeScalarFieldEnum | Oa_system_codeScalarFieldEnum[] | No |
Find zero or more Oa_system_code
// Get all Oa_system_code
const Oa_system_code = await prisma.oa_system_code.findMany()
// Get first 10 Oa_system_code
const Oa_system_code = await prisma.oa_system_code.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | oa_system_codeWhereInput | No |
| orderBy | oa_system_codeOrderByWithRelationInput[] | oa_system_codeOrderByWithRelationInput | No |
| cursor | oa_system_codeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_system_codeScalarFieldEnum | Oa_system_codeScalarFieldEnum[] | No |
Create one Oa_system_code
// Create one Oa_system_code
const Oa_system_code = await prisma.oa_system_code.create({
data: {
// ... data to create a Oa_system_code
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_system_codeCreateInput | oa_system_codeUncheckedCreateInput | Yes |
Delete one Oa_system_code
// Delete one Oa_system_code
const Oa_system_code = await prisma.oa_system_code.delete({
where: {
// ... filter to delete one Oa_system_code
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_codeWhereUniqueInput | Yes |
Update one Oa_system_code
// Update one Oa_system_code
const oa_system_code = await prisma.oa_system_code.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_system_codeUpdateInput | oa_system_codeUncheckedUpdateInput | Yes |
| where | oa_system_codeWhereUniqueInput | Yes |
Delete zero or more Oa_system_code
// Delete a few Oa_system_code
const { count } = await prisma.oa_system_code.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_codeWhereInput | No |
Update zero or one Oa_system_code
const { count } = await prisma.oa_system_code.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_system_codeUpdateManyMutationInput | oa_system_codeUncheckedUpdateManyInput | Yes |
| where | oa_system_codeWhereInput | No |
Create or update one Oa_system_code
// Update or create a Oa_system_code
const oa_system_code = await prisma.oa_system_code.upsert({
create: {
// ... data to create a Oa_system_code
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Oa_system_code we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_codeWhereUniqueInput | Yes |
| create | oa_system_codeCreateInput | oa_system_codeUncheckedCreateInput | Yes |
| update | oa_system_codeUpdateInput | oa_system_codeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| code_type | String |
|
Yes | - |
| territory | String |
|
Yes | - |
| code | String |
|
Yes | - |
| code_group | String? |
|
No | - |
| value_type | String? |
|
No | - |
| code_name | Json? |
|
No | - |
| code_parameter | Json? |
|
No | - |
| show_sequence | Int |
|
Yes | - |
| used_flag | Boolean |
|
Yes | - |
| up_level_type | String? |
|
No | - |
| memo | String? |
|
No | - |
| enable | Boolean |
|
Yes | - |
| created_user | String |
|
Yes | - |
| created_date | DateTime |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
| code_name_local | String? |
|
No | - |
| code_name_eng | String? |
|
No | - |
Find zero or one Oa_system_code_detail
// Get one Oa_system_code_detail
const oa_system_code_detail = await prisma.oa_system_code_detail.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_code_detailWhereUniqueInput | Yes |
Find first Oa_system_code_detail
// Get one Oa_system_code_detail
const oa_system_code_detail = await prisma.oa_system_code_detail.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_code_detailWhereInput | No |
| orderBy | oa_system_code_detailOrderByWithRelationInput[] | oa_system_code_detailOrderByWithRelationInput | No |
| cursor | oa_system_code_detailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_system_code_detailScalarFieldEnum | Oa_system_code_detailScalarFieldEnum[] | No |
Find zero or more Oa_system_code_detail
// Get all Oa_system_code_detail
const Oa_system_code_detail = await prisma.oa_system_code_detail.findMany()
// Get first 10 Oa_system_code_detail
const Oa_system_code_detail = await prisma.oa_system_code_detail.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | oa_system_code_detailWhereInput | No |
| orderBy | oa_system_code_detailOrderByWithRelationInput[] | oa_system_code_detailOrderByWithRelationInput | No |
| cursor | oa_system_code_detailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_system_code_detailScalarFieldEnum | Oa_system_code_detailScalarFieldEnum[] | No |
Create one Oa_system_code_detail
// Create one Oa_system_code_detail
const Oa_system_code_detail = await prisma.oa_system_code_detail.create({
data: {
// ... data to create a Oa_system_code_detail
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_system_code_detailCreateInput | oa_system_code_detailUncheckedCreateInput | Yes |
Delete one Oa_system_code_detail
// Delete one Oa_system_code_detail
const Oa_system_code_detail = await prisma.oa_system_code_detail.delete({
where: {
// ... filter to delete one Oa_system_code_detail
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_code_detailWhereUniqueInput | Yes |
Update one Oa_system_code_detail
// Update one Oa_system_code_detail
const oa_system_code_detail = await prisma.oa_system_code_detail.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_system_code_detailUpdateInput | oa_system_code_detailUncheckedUpdateInput | Yes |
| where | oa_system_code_detailWhereUniqueInput | Yes |
Delete zero or more Oa_system_code_detail
// Delete a few Oa_system_code_detail
const { count } = await prisma.oa_system_code_detail.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_code_detailWhereInput | No |
Update zero or one Oa_system_code_detail
const { count } = await prisma.oa_system_code_detail.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_system_code_detailUpdateManyMutationInput | oa_system_code_detailUncheckedUpdateManyInput | Yes |
| where | oa_system_code_detailWhereInput | No |
Create or update one Oa_system_code_detail
// Update or create a Oa_system_code_detail
const oa_system_code_detail = await prisma.oa_system_code_detail.upsert({
create: {
// ... data to create a Oa_system_code_detail
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Oa_system_code_detail we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_system_code_detailWhereUniqueInput | Yes |
| create | oa_system_code_detailCreateInput | oa_system_code_detailUncheckedCreateInput | Yes |
| update | oa_system_code_detailUpdateInput | oa_system_code_detailUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | BigInt |
|
Yes | - |
| task_label | String |
|
Yes | - |
| job_name | String |
|
Yes | - |
| task_name | String |
|
Yes | - |
| task_target | String |
|
Yes | - |
| execution_time | DateTime? |
|
No | - |
| execution_script | String? |
|
No | - |
| execution_log | Json? |
|
No | - |
| executed | Int |
|
Yes | - |
| exec_start_date | DateTime? |
|
No | - |
| exec_end_date | DateTime? |
|
No | - |
| enable | Int |
|
Yes | - |
| created_user | String |
|
Yes | - |
| created_date | DateTime |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one Oa_task_job
// Get one Oa_task_job
const oa_task_job = await prisma.oa_task_job.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_task_jobWhereUniqueInput | Yes |
Find first Oa_task_job
// Get one Oa_task_job
const oa_task_job = await prisma.oa_task_job.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_task_jobWhereInput | No |
| orderBy | oa_task_jobOrderByWithRelationInput[] | oa_task_jobOrderByWithRelationInput | No |
| cursor | oa_task_jobWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_task_jobScalarFieldEnum | Oa_task_jobScalarFieldEnum[] | No |
Find zero or more Oa_task_job
// Get all Oa_task_job
const Oa_task_job = await prisma.oa_task_job.findMany()
// Get first 10 Oa_task_job
const Oa_task_job = await prisma.oa_task_job.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | oa_task_jobWhereInput | No |
| orderBy | oa_task_jobOrderByWithRelationInput[] | oa_task_jobOrderByWithRelationInput | No |
| cursor | oa_task_jobWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_task_jobScalarFieldEnum | Oa_task_jobScalarFieldEnum[] | No |
Create one Oa_task_job
// Create one Oa_task_job
const Oa_task_job = await prisma.oa_task_job.create({
data: {
// ... data to create a Oa_task_job
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_task_jobCreateInput | oa_task_jobUncheckedCreateInput | Yes |
Delete one Oa_task_job
// Delete one Oa_task_job
const Oa_task_job = await prisma.oa_task_job.delete({
where: {
// ... filter to delete one Oa_task_job
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_task_jobWhereUniqueInput | Yes |
Update one Oa_task_job
// Update one Oa_task_job
const oa_task_job = await prisma.oa_task_job.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_task_jobUpdateInput | oa_task_jobUncheckedUpdateInput | Yes |
| where | oa_task_jobWhereUniqueInput | Yes |
Delete zero or more Oa_task_job
// Delete a few Oa_task_job
const { count } = await prisma.oa_task_job.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_task_jobWhereInput | No |
Update zero or one Oa_task_job
const { count } = await prisma.oa_task_job.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_task_jobUpdateManyMutationInput | oa_task_jobUncheckedUpdateManyInput | Yes |
| where | oa_task_jobWhereInput | No |
Create or update one Oa_task_job
// Update or create a Oa_task_job
const oa_task_job = await prisma.oa_task_job.upsert({
create: {
// ... data to create a Oa_task_job
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Oa_task_job we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_task_jobWhereUniqueInput | Yes |
| create | oa_task_jobCreateInput | oa_task_jobUncheckedCreateInput | Yes |
| update | oa_task_jobUpdateInput | oa_task_jobUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| code | String |
|
Yes | - |
| title | String? |
|
No | - |
| default_territory | String |
|
Yes | - |
| language | String |
|
Yes | - |
| default_language | String |
|
Yes | - |
| timezone | String? |
|
No | - |
| priority | Int? |
|
No | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one Oa_territory
// Get one Oa_territory
const oa_territory = await prisma.oa_territory.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_territoryWhereUniqueInput | Yes |
Find first Oa_territory
// Get one Oa_territory
const oa_territory = await prisma.oa_territory.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_territoryWhereInput | No |
| orderBy | oa_territoryOrderByWithRelationInput[] | oa_territoryOrderByWithRelationInput | No |
| cursor | oa_territoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_territoryScalarFieldEnum | Oa_territoryScalarFieldEnum[] | No |
Find zero or more Oa_territory
// Get all Oa_territory
const Oa_territory = await prisma.oa_territory.findMany()
// Get first 10 Oa_territory
const Oa_territory = await prisma.oa_territory.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | oa_territoryWhereInput | No |
| orderBy | oa_territoryOrderByWithRelationInput[] | oa_territoryOrderByWithRelationInput | No |
| cursor | oa_territoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Oa_territoryScalarFieldEnum | Oa_territoryScalarFieldEnum[] | No |
Create one Oa_territory
// Create one Oa_territory
const Oa_territory = await prisma.oa_territory.create({
data: {
// ... data to create a Oa_territory
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_territoryCreateInput | oa_territoryUncheckedCreateInput | Yes |
Delete one Oa_territory
// Delete one Oa_territory
const Oa_territory = await prisma.oa_territory.delete({
where: {
// ... filter to delete one Oa_territory
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_territoryWhereUniqueInput | Yes |
Update one Oa_territory
// Update one Oa_territory
const oa_territory = await prisma.oa_territory.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_territoryUpdateInput | oa_territoryUncheckedUpdateInput | Yes |
| where | oa_territoryWhereUniqueInput | Yes |
Delete zero or more Oa_territory
// Delete a few Oa_territory
const { count } = await prisma.oa_territory.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_territoryWhereInput | No |
Update zero or one Oa_territory
const { count } = await prisma.oa_territory.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | oa_territoryUpdateManyMutationInput | oa_territoryUncheckedUpdateManyInput | Yes |
| where | oa_territoryWhereInput | No |
Create or update one Oa_territory
// Update or create a Oa_territory
const oa_territory = await prisma.oa_territory.upsert({
create: {
// ... data to create a Oa_territory
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Oa_territory we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | oa_territoryWhereUniqueInput | Yes |
| create | oa_territoryCreateInput | oa_territoryUncheckedCreateInput | Yes |
| update | oa_territoryUpdateInput | oa_territoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| menu_id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| show_name | String |
|
Yes | - |
| icon | String? |
|
No | - |
| type | String |
|
Yes | - |
| enable | Boolean |
|
Yes | - |
| created_user | String |
|
Yes | - |
| created_date | DateTime |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one System_function
// Get one System_function
const system_function = await prisma.system_function.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_functionWhereUniqueInput | Yes |
Find first System_function
// Get one System_function
const system_function = await prisma.system_function.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_functionWhereInput | No |
| orderBy | system_functionOrderByWithRelationInput[] | system_functionOrderByWithRelationInput | No |
| cursor | system_functionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_functionScalarFieldEnum | System_functionScalarFieldEnum[] | No |
Find zero or more System_function
// Get all System_function
const System_function = await prisma.system_function.findMany()
// Get first 10 System_function
const System_function = await prisma.system_function.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | system_functionWhereInput | No |
| orderBy | system_functionOrderByWithRelationInput[] | system_functionOrderByWithRelationInput | No |
| cursor | system_functionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_functionScalarFieldEnum | System_functionScalarFieldEnum[] | No |
Create one System_function
// Create one System_function
const System_function = await prisma.system_function.create({
data: {
// ... data to create a System_function
}
})
| Name | Type | Required |
|---|---|---|
| data | system_functionCreateInput | system_functionUncheckedCreateInput | Yes |
Delete one System_function
// Delete one System_function
const System_function = await prisma.system_function.delete({
where: {
// ... filter to delete one System_function
}
})
| Name | Type | Required |
|---|---|---|
| where | system_functionWhereUniqueInput | Yes |
Update one System_function
// Update one System_function
const system_function = await prisma.system_function.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_functionUpdateInput | system_functionUncheckedUpdateInput | Yes |
| where | system_functionWhereUniqueInput | Yes |
Delete zero or more System_function
// Delete a few System_function
const { count } = await prisma.system_function.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_functionWhereInput | No |
Update zero or one System_function
const { count } = await prisma.system_function.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_functionUpdateManyMutationInput | system_functionUncheckedUpdateManyInput | Yes |
| where | system_functionWhereInput | No |
Create or update one System_function
// Update or create a System_function
const system_function = await prisma.system_function.upsert({
create: {
// ... data to create a System_function
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the System_function we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | system_functionWhereUniqueInput | Yes |
| create | system_functionCreateInput | system_functionUncheckedCreateInput | Yes |
| update | system_functionUpdateInput | system_functionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| cascade_id | String? |
|
No | - |
| name | String |
|
Yes | - |
| pathname | String |
|
Yes | - |
| icon | String? |
|
No | - |
| show_in_menu | Boolean |
|
Yes | - |
| is_web_page | Boolean |
|
Yes | - |
| is_need_login | Boolean |
|
Yes | - |
| parent_id | String? |
|
No | - |
| table_memo | String? |
|
No | - |
| sort | Int |
|
Yes | - |
| enable | Boolean |
|
Yes | - |
| created_user | String |
|
Yes | - |
| created_date | DateTime |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one System_menu
// Get one System_menu
const system_menu = await prisma.system_menu.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_menuWhereUniqueInput | Yes |
Find first System_menu
// Get one System_menu
const system_menu = await prisma.system_menu.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_menuWhereInput | No |
| orderBy | system_menuOrderByWithRelationInput[] | system_menuOrderByWithRelationInput | No |
| cursor | system_menuWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_menuScalarFieldEnum | System_menuScalarFieldEnum[] | No |
Find zero or more System_menu
// Get all System_menu
const System_menu = await prisma.system_menu.findMany()
// Get first 10 System_menu
const System_menu = await prisma.system_menu.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | system_menuWhereInput | No |
| orderBy | system_menuOrderByWithRelationInput[] | system_menuOrderByWithRelationInput | No |
| cursor | system_menuWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_menuScalarFieldEnum | System_menuScalarFieldEnum[] | No |
Create one System_menu
// Create one System_menu
const System_menu = await prisma.system_menu.create({
data: {
// ... data to create a System_menu
}
})
| Name | Type | Required |
|---|---|---|
| data | system_menuCreateInput | system_menuUncheckedCreateInput | Yes |
Delete one System_menu
// Delete one System_menu
const System_menu = await prisma.system_menu.delete({
where: {
// ... filter to delete one System_menu
}
})
| Name | Type | Required |
|---|---|---|
| where | system_menuWhereUniqueInput | Yes |
Update one System_menu
// Update one System_menu
const system_menu = await prisma.system_menu.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_menuUpdateInput | system_menuUncheckedUpdateInput | Yes |
| where | system_menuWhereUniqueInput | Yes |
Delete zero or more System_menu
// Delete a few System_menu
const { count } = await prisma.system_menu.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_menuWhereInput | No |
Update zero or one System_menu
const { count } = await prisma.system_menu.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_menuUpdateManyMutationInput | system_menuUncheckedUpdateManyInput | Yes |
| where | system_menuWhereInput | No |
Create or update one System_menu
// Update or create a System_menu
const system_menu = await prisma.system_menu.upsert({
create: {
// ... data to create a System_menu
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the System_menu we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | system_menuWhereUniqueInput | Yes |
| create | system_menuCreateInput | system_menuUncheckedCreateInput | Yes |
| update | system_menuUpdateInput | system_menuUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| memo | String? |
|
No | - |
| type | String |
|
Yes | - |
| first_id | String |
|
Yes | - |
| second_id | String |
|
Yes | - |
| third_id | String? |
|
No | - |
| enable | Boolean |
|
Yes | - |
| created_user | String |
|
Yes | - |
| created_date | DateTime |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one System_relevance
// Get one System_relevance
const system_relevance = await prisma.system_relevance.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_relevanceWhereUniqueInput | Yes |
Find first System_relevance
// Get one System_relevance
const system_relevance = await prisma.system_relevance.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_relevanceWhereInput | No |
| orderBy | system_relevanceOrderByWithRelationInput[] | system_relevanceOrderByWithRelationInput | No |
| cursor | system_relevanceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_relevanceScalarFieldEnum | System_relevanceScalarFieldEnum[] | No |
Find zero or more System_relevance
// Get all System_relevance
const System_relevance = await prisma.system_relevance.findMany()
// Get first 10 System_relevance
const System_relevance = await prisma.system_relevance.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | system_relevanceWhereInput | No |
| orderBy | system_relevanceOrderByWithRelationInput[] | system_relevanceOrderByWithRelationInput | No |
| cursor | system_relevanceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_relevanceScalarFieldEnum | System_relevanceScalarFieldEnum[] | No |
Create one System_relevance
// Create one System_relevance
const System_relevance = await prisma.system_relevance.create({
data: {
// ... data to create a System_relevance
}
})
| Name | Type | Required |
|---|---|---|
| data | system_relevanceCreateInput | system_relevanceUncheckedCreateInput | Yes |
Delete one System_relevance
// Delete one System_relevance
const System_relevance = await prisma.system_relevance.delete({
where: {
// ... filter to delete one System_relevance
}
})
| Name | Type | Required |
|---|---|---|
| where | system_relevanceWhereUniqueInput | Yes |
Update one System_relevance
// Update one System_relevance
const system_relevance = await prisma.system_relevance.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_relevanceUpdateInput | system_relevanceUncheckedUpdateInput | Yes |
| where | system_relevanceWhereUniqueInput | Yes |
Delete zero or more System_relevance
// Delete a few System_relevance
const { count } = await prisma.system_relevance.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_relevanceWhereInput | No |
Update zero or one System_relevance
const { count } = await prisma.system_relevance.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_relevanceUpdateManyMutationInput | system_relevanceUncheckedUpdateManyInput | Yes |
| where | system_relevanceWhereInput | No |
Create or update one System_relevance
// Update or create a System_relevance
const system_relevance = await prisma.system_relevance.upsert({
create: {
// ... data to create a System_relevance
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the System_relevance we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | system_relevanceWhereUniqueInput | Yes |
| create | system_relevanceCreateInput | system_relevanceUncheckedCreateInput | Yes |
| update | system_relevanceUpdateInput | system_relevanceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| code | String |
|
Yes | - |
| name | String |
|
Yes | - |
| enable | Boolean |
|
Yes | - |
| created_user | String |
|
Yes | - |
| created_date | DateTime |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one System_role
// Get one System_role
const system_role = await prisma.system_role.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_roleWhereUniqueInput | Yes |
Find first System_role
// Get one System_role
const system_role = await prisma.system_role.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_roleWhereInput | No |
| orderBy | system_roleOrderByWithRelationInput[] | system_roleOrderByWithRelationInput | No |
| cursor | system_roleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_roleScalarFieldEnum | System_roleScalarFieldEnum[] | No |
Find zero or more System_role
// Get all System_role
const System_role = await prisma.system_role.findMany()
// Get first 10 System_role
const System_role = await prisma.system_role.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | system_roleWhereInput | No |
| orderBy | system_roleOrderByWithRelationInput[] | system_roleOrderByWithRelationInput | No |
| cursor | system_roleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_roleScalarFieldEnum | System_roleScalarFieldEnum[] | No |
Create one System_role
// Create one System_role
const System_role = await prisma.system_role.create({
data: {
// ... data to create a System_role
}
})
| Name | Type | Required |
|---|---|---|
| data | system_roleCreateInput | system_roleUncheckedCreateInput | Yes |
Delete one System_role
// Delete one System_role
const System_role = await prisma.system_role.delete({
where: {
// ... filter to delete one System_role
}
})
| Name | Type | Required |
|---|---|---|
| where | system_roleWhereUniqueInput | Yes |
Update one System_role
// Update one System_role
const system_role = await prisma.system_role.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_roleUpdateInput | system_roleUncheckedUpdateInput | Yes |
| where | system_roleWhereUniqueInput | Yes |
Delete zero or more System_role
// Delete a few System_role
const { count } = await prisma.system_role.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_roleWhereInput | No |
Update zero or one System_role
const { count } = await prisma.system_role.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_roleUpdateManyMutationInput | system_roleUncheckedUpdateManyInput | Yes |
| where | system_roleWhereInput | No |
Create or update one System_role
// Update or create a System_role
const system_role = await prisma.system_role.upsert({
create: {
// ... data to create a System_role
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the System_role we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | system_roleWhereUniqueInput | Yes |
| create | system_roleCreateInput | system_roleUncheckedCreateInput | Yes |
| update | system_roleUpdateInput | system_roleUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| provider_id | String |
|
Yes | - |
| provider | String |
|
Yes | - |
| display_name | String |
|
Yes | - |
| family_name | String |
|
Yes | - |
| given_name | String |
|
Yes | - |
| String |
|
Yes | - | |
| email_verified | Boolean? |
|
No | - |
| password | String |
|
Yes | - |
| language | String |
|
Yes | - |
| locale | String? |
|
No | - |
| picture | String? |
|
No | - |
| enable | Boolean |
|
Yes | - |
| created_user | String |
|
Yes | - |
| created_date | DateTime |
|
Yes | - |
| updated_user | String |
|
Yes | - |
| updated_date | DateTime |
|
Yes | - |
Find zero or one System_user
// Get one System_user
const system_user = await prisma.system_user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_userWhereUniqueInput | Yes |
Find first System_user
// Get one System_user
const system_user = await prisma.system_user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_userWhereInput | No |
| orderBy | system_userOrderByWithRelationInput[] | system_userOrderByWithRelationInput | No |
| cursor | system_userWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_userScalarFieldEnum | System_userScalarFieldEnum[] | No |
Find zero or more System_user
// Get all System_user
const System_user = await prisma.system_user.findMany()
// Get first 10 System_user
const System_user = await prisma.system_user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | system_userWhereInput | No |
| orderBy | system_userOrderByWithRelationInput[] | system_userOrderByWithRelationInput | No |
| cursor | system_userWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | System_userScalarFieldEnum | System_userScalarFieldEnum[] | No |
Create one System_user
// Create one System_user
const System_user = await prisma.system_user.create({
data: {
// ... data to create a System_user
}
})
| Name | Type | Required |
|---|---|---|
| data | system_userCreateInput | system_userUncheckedCreateInput | Yes |
Delete one System_user
// Delete one System_user
const System_user = await prisma.system_user.delete({
where: {
// ... filter to delete one System_user
}
})
| Name | Type | Required |
|---|---|---|
| where | system_userWhereUniqueInput | Yes |
Update one System_user
// Update one System_user
const system_user = await prisma.system_user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_userUpdateInput | system_userUncheckedUpdateInput | Yes |
| where | system_userWhereUniqueInput | Yes |
Delete zero or more System_user
// Delete a few System_user
const { count } = await prisma.system_user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | system_userWhereInput | No |
Update zero or one System_user
const { count } = await prisma.system_user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | system_userUpdateManyMutationInput | system_userUncheckedUpdateManyInput | Yes |
| where | system_userWhereInput | No |
Create or update one System_user
// Update or create a System_user
const system_user = await prisma.system_user.upsert({
create: {
// ... data to create a System_user
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the System_user we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | system_userWhereUniqueInput | Yes |
| create | system_userCreateInput | system_userUncheckedCreateInput | Yes |
| update | system_userUpdateInput | system_userUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| userId | String |
|
Yes | - |
| type | String |
|
Yes | - |
| provider | String |
|
Yes | - |
| providerAccountId | String |
|
Yes | - |
| refresh_token | String? |
|
No | - |
| access_token | String? |
|
No | - |
| expires_at | Int? |
|
No | - |
| token_type | String? |
|
No | - |
| scope | String? |
|
No | - |
| id_token | String? |
|
No | - |
| session_state | String? |
|
No | - |
| user | User |
|
Yes | - |
Find zero or one Account
// Get one Account
const account = await prisma.account.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Find first Account
// Get one Account
const account = await prisma.account.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum | AccountScalarFieldEnum[] | No |
Find zero or more Account
// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum | AccountScalarFieldEnum[] | No |
Create one Account
// Create one Account
const Account = await prisma.account.create({
data: {
// ... data to create a Account
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountCreateInput | AccountUncheckedCreateInput | Yes |
Delete one Account
// Delete one Account
const Account = await prisma.account.delete({
where: {
// ... filter to delete one Account
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Update one Account
// Update one Account
const account = await prisma.account.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| where | AccountWhereUniqueInput | Yes |
Delete zero or more Account
// Delete a few Account
const { count } = await prisma.account.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
Update zero or one Account
const { count } = await prisma.account.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput | Yes |
| where | AccountWhereInput | No |
Create or update one Account
// Update or create a Account
const account = await prisma.account.upsert({
create: {
// ... data to create a Account
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Account we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
| create | AccountCreateInput | AccountUncheckedCreateInput | Yes |
| update | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| sessionToken | String |
|
Yes | - |
| userId | String |
|
Yes | - |
| expires | DateTime |
|
Yes | - |
| user | User |
|
Yes | - |
Find zero or one Session
// Get one Session
const session = await prisma.session.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Find first Session
// Get one Session
const session = await prisma.session.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum | SessionScalarFieldEnum[] | No |
Find zero or more Session
// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum | SessionScalarFieldEnum[] | No |
Create one Session
// Create one Session
const Session = await prisma.session.create({
data: {
// ... data to create a Session
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionCreateInput | SessionUncheckedCreateInput | Yes |
Delete one Session
// Delete one Session
const Session = await prisma.session.delete({
where: {
// ... filter to delete one Session
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Update one Session
// Update one Session
const session = await prisma.session.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| where | SessionWhereUniqueInput | Yes |
Delete zero or more Session
// Delete a few Session
const { count } = await prisma.session.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
Update zero or one Session
const { count } = await prisma.session.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput | Yes |
| where | SessionWhereInput | No |
Create or update one Session
// Update or create a Session
const session = await prisma.session.upsert({
create: {
// ... data to create a Session
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Session we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
| create | SessionCreateInput | SessionUncheckedCreateInput | Yes |
| update | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | No |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| identifier | String |
|
Yes | - |
| token | String |
|
Yes | - |
| expires | DateTime |
|
Yes | - |
Find zero or one VerificationToken
// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
Find first VerificationToken
// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
| orderBy | VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput | No |
| cursor | VerificationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] | No |
Find zero or more VerificationToken
// Get all VerificationToken
const VerificationToken = await prisma.verificationToken.findMany()
// Get first 10 VerificationToken
const VerificationToken = await prisma.verificationToken.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
| orderBy | VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput | No |
| cursor | VerificationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] | No |
Create one VerificationToken
// Create one VerificationToken
const VerificationToken = await prisma.verificationToken.create({
data: {
// ... data to create a VerificationToken
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput | Yes |
Delete one VerificationToken
// Delete one VerificationToken
const VerificationToken = await prisma.verificationToken.delete({
where: {
// ... filter to delete one VerificationToken
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
Update one VerificationToken
// Update one VerificationToken
const verificationToken = await prisma.verificationToken.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput | Yes |
| where | VerificationTokenWhereUniqueInput | Yes |
Delete zero or more VerificationToken
// Delete a few VerificationToken
const { count } = await prisma.verificationToken.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
Update zero or one VerificationToken
const { count } = await prisma.verificationToken.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenUpdateManyMutationInput | VerificationTokenUncheckedUpdateManyInput | Yes |
| where | VerificationTokenWhereInput | No |
Create or update one VerificationToken
// Update or create a VerificationToken
const verificationToken = await prisma.verificationToken.upsert({
create: {
// ... data to create a VerificationToken
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the VerificationToken we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
| create | VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput | Yes |
| update | VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_categoryWhereInput | cms_categoryWhereInput[] | No |
| OR | cms_categoryWhereInput[] | No |
| NOT | cms_categoryWhereInput | cms_categoryWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| territory | StringFilter | String | No |
| key | StringFilter | String | No |
| code | StringFilter | String | No |
| title | JsonNullableFilter | No |
| on_used | BoolFilter | Boolean | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| statistics | JsonNullableFilter | No |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_category_mapping | Cms_category_mappingListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| title | SortOrder | SortOrderInput | No |
| on_used | SortOrder | No |
| sequence | SortOrder | SortOrderInput | No |
| statistics | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_category_mapping | cms_category_mappingOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory_key_code | cms_categoryTerritoryKeyCodeCompoundUniqueInput | No |
| AND | cms_categoryWhereInput | cms_categoryWhereInput[] | No |
| OR | cms_categoryWhereInput[] | No |
| NOT | cms_categoryWhereInput | cms_categoryWhereInput[] | No |
| territory | StringFilter | String | No |
| key | StringFilter | String | No |
| code | StringFilter | String | No |
| title | JsonNullableFilter | No |
| on_used | BoolFilter | Boolean | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| statistics | JsonNullableFilter | No |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_category_mapping | Cms_category_mappingListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| title | SortOrder | SortOrderInput | No |
| on_used | SortOrder | No |
| sequence | SortOrder | SortOrderInput | No |
| statistics | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_categoryCountOrderByAggregateInput | No |
| _avg | cms_categoryAvgOrderByAggregateInput | No |
| _max | cms_categoryMaxOrderByAggregateInput | No |
| _min | cms_categoryMinOrderByAggregateInput | No |
| _sum | cms_categorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_categoryScalarWhereWithAggregatesInput | cms_categoryScalarWhereWithAggregatesInput[] | No |
| OR | cms_categoryScalarWhereWithAggregatesInput[] | No |
| NOT | cms_categoryScalarWhereWithAggregatesInput | cms_categoryScalarWhereWithAggregatesInput[] | No |
| id | BigIntWithAggregatesFilter | BigInt | No |
| territory | StringWithAggregatesFilter | String | No |
| key | StringWithAggregatesFilter | String | No |
| code | StringWithAggregatesFilter | String | No |
| title | JsonNullableWithAggregatesFilter | No |
| on_used | BoolWithAggregatesFilter | Boolean | No |
| sequence | IntNullableWithAggregatesFilter | Int | Null | Yes |
| statistics | JsonNullableWithAggregatesFilter | No |
| parameter_values | JsonNullableWithAggregatesFilter | No |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_category_mappingWhereInput | cms_category_mappingWhereInput[] | No |
| OR | cms_category_mappingWhereInput[] | No |
| NOT | cms_category_mappingWhereInput | cms_category_mappingWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| category_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_category | Cms_categoryRelationFilter | cms_categoryWhereInput | No |
| cms_resource | Cms_resourceRelationFilter | cms_resourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| category_id | SortOrder | No |
| parameter_values | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| enable | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_category | cms_categoryOrderByWithRelationInput | No |
| cms_resource | cms_resourceOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id_category_id | cms_category_mappingResource_idCategory_idCompoundUniqueInput | No |
| id_resource_id | cms_category_mappingIdResource_idCompoundUniqueInput | No |
| AND | cms_category_mappingWhereInput | cms_category_mappingWhereInput[] | No |
| OR | cms_category_mappingWhereInput[] | No |
| NOT | cms_category_mappingWhereInput | cms_category_mappingWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| category_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_category | Cms_categoryRelationFilter | cms_categoryWhereInput | No |
| cms_resource | Cms_resourceRelationFilter | cms_resourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| category_id | SortOrder | No |
| parameter_values | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| enable | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_category_mappingCountOrderByAggregateInput | No |
| _avg | cms_category_mappingAvgOrderByAggregateInput | No |
| _max | cms_category_mappingMaxOrderByAggregateInput | No |
| _min | cms_category_mappingMinOrderByAggregateInput | No |
| _sum | cms_category_mappingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_category_mappingScalarWhereWithAggregatesInput | cms_category_mappingScalarWhereWithAggregatesInput[] | No |
| OR | cms_category_mappingScalarWhereWithAggregatesInput[] | No |
| NOT | cms_category_mappingScalarWhereWithAggregatesInput | cms_category_mappingScalarWhereWithAggregatesInput[] | No |
| id | BigIntWithAggregatesFilter | BigInt | No |
| resource_id | BigIntWithAggregatesFilter | BigInt | No |
| category_id | BigIntWithAggregatesFilter | BigInt | No |
| parameter_values | JsonNullableWithAggregatesFilter | No |
| sequence | IntNullableWithAggregatesFilter | Int | Null | Yes |
| enable | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_channelWhereInput | cms_channelWhereInput[] | No |
| OR | cms_channelWhereInput[] | No |
| NOT | cms_channelWhereInput | cms_channelWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| licensor_id | BigIntFilter | BigInt | No |
| code | StringFilter | String | No |
| handle | StringFilter | String | No |
| title | JsonNullableFilter | No |
| image | JsonNullableFilter | No |
| description | JsonNullableFilter | No |
| statistics | JsonNullableFilter | No |
| parameter_values | JsonNullableFilter | No |
| seo_info | JsonNullableFilter | No |
| territory | StringFilter | String | No |
| default_territory | StringFilter | String | No |
| created_date | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| title_en | StringNullableFilter | String | Null | Yes |
| title_zhtw | StringNullableFilter | String | Null | Yes |
| title_inid | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_id | SortOrder | No |
| code | SortOrder | No |
| handle | SortOrder | No |
| title | SortOrder | SortOrderInput | No |
| image | SortOrder | SortOrderInput | No |
| description | SortOrder | SortOrderInput | No |
| statistics | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| seo_info | SortOrder | SortOrderInput | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| created_date | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | SortOrderInput | No |
| title_zhtw | SortOrder | SortOrderInput | No |
| title_inid | SortOrder | SortOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| code | String | No |
| handle | String | No |
| AND | cms_channelWhereInput | cms_channelWhereInput[] | No |
| OR | cms_channelWhereInput[] | No |
| NOT | cms_channelWhereInput | cms_channelWhereInput[] | No |
| licensor_id | BigIntFilter | BigInt | No |
| title | JsonNullableFilter | No |
| image | JsonNullableFilter | No |
| description | JsonNullableFilter | No |
| statistics | JsonNullableFilter | No |
| parameter_values | JsonNullableFilter | No |
| seo_info | JsonNullableFilter | No |
| territory | StringFilter | String | No |
| default_territory | StringFilter | String | No |
| created_date | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| title_en | StringNullableFilter | String | Null | Yes |
| title_zhtw | StringNullableFilter | String | Null | Yes |
| title_inid | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_id | SortOrder | No |
| code | SortOrder | No |
| handle | SortOrder | No |
| title | SortOrder | SortOrderInput | No |
| image | SortOrder | SortOrderInput | No |
| description | SortOrder | SortOrderInput | No |
| statistics | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| seo_info | SortOrder | SortOrderInput | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| created_date | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | SortOrderInput | No |
| title_zhtw | SortOrder | SortOrderInput | No |
| title_inid | SortOrder | SortOrderInput | No |
| _count | cms_channelCountOrderByAggregateInput | No |
| _avg | cms_channelAvgOrderByAggregateInput | No |
| _max | cms_channelMaxOrderByAggregateInput | No |
| _min | cms_channelMinOrderByAggregateInput | No |
| _sum | cms_channelSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_curationWhereInput | cms_curationWhereInput[] | No |
| OR | cms_curationWhereInput[] | No |
| NOT | cms_curationWhereInput | cms_curationWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| key | StringNullableFilter | String | Null | Yes |
| code | StringNullableFilter | String | Null | Yes |
| title | JsonNullableFilter | No |
| company_id | StringFilter | String | No |
| territory | StringFilter | String | No |
| default_territory | StringNullableFilter | String | Null | Yes |
| status | StringFilter | String | No |
| detail_parameter | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| title_en | StringNullableFilter | String | Null | Yes |
| title_zhtw | StringNullableFilter | String | Null | Yes |
| title_inid | StringNullableFilter | String | Null | Yes |
| cms_curation_mapping | Cms_curation_mappingListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | SortOrderInput | No |
| code | SortOrder | SortOrderInput | No |
| title | SortOrder | SortOrderInput | No |
| company_id | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| detail_parameter | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | SortOrderInput | No |
| title_zhtw | SortOrder | SortOrderInput | No |
| title_inid | SortOrder | SortOrderInput | No |
| cms_curation_mapping | cms_curation_mappingOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | No |
| AND | cms_curationWhereInput | cms_curationWhereInput[] | No |
| OR | cms_curationWhereInput[] | No |
| NOT | cms_curationWhereInput | cms_curationWhereInput[] | No |
| code | StringNullableFilter | String | Null | Yes |
| title | JsonNullableFilter | No |
| company_id | StringFilter | String | No |
| territory | StringFilter | String | No |
| default_territory | StringNullableFilter | String | Null | Yes |
| status | StringFilter | String | No |
| detail_parameter | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| title_en | StringNullableFilter | String | Null | Yes |
| title_zhtw | StringNullableFilter | String | Null | Yes |
| title_inid | StringNullableFilter | String | Null | Yes |
| cms_curation_mapping | Cms_curation_mappingListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | SortOrderInput | No |
| code | SortOrder | SortOrderInput | No |
| title | SortOrder | SortOrderInput | No |
| company_id | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| detail_parameter | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | SortOrderInput | No |
| title_zhtw | SortOrder | SortOrderInput | No |
| title_inid | SortOrder | SortOrderInput | No |
| _count | cms_curationCountOrderByAggregateInput | No |
| _avg | cms_curationAvgOrderByAggregateInput | No |
| _max | cms_curationMaxOrderByAggregateInput | No |
| _min | cms_curationMinOrderByAggregateInput | No |
| _sum | cms_curationSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_curation_mappingWhereInput | cms_curation_mappingWhereInput[] | No |
| OR | cms_curation_mappingWhereInput[] | No |
| NOT | cms_curation_mappingWhereInput | cms_curation_mappingWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| curation_id | BigIntFilter | BigInt | No |
| edited | BoolNullableFilter | Boolean | Null | Yes |
| sequence | IntNullableFilter | Int | Null | Yes |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_curation | Cms_curationRelationFilter | cms_curationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| edited | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_curation | cms_curationOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id_curation_id_edited | cms_curation_mappingResource_idCuration_idEditedCompoundUniqueInput | No |
| AND | cms_curation_mappingWhereInput | cms_curation_mappingWhereInput[] | No |
| OR | cms_curation_mappingWhereInput[] | No |
| NOT | cms_curation_mappingWhereInput | cms_curation_mappingWhereInput[] | No |
| resource_id | BigIntFilter | BigInt | No |
| curation_id | BigIntFilter | BigInt | No |
| edited | BoolNullableFilter | Boolean | Null | Yes |
| sequence | IntNullableFilter | Int | Null | Yes |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_curation | Cms_curationRelationFilter | cms_curationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| edited | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_curation_mappingCountOrderByAggregateInput | No |
| _avg | cms_curation_mappingAvgOrderByAggregateInput | No |
| _max | cms_curation_mappingMaxOrderByAggregateInput | No |
| _min | cms_curation_mappingMinOrderByAggregateInput | No |
| _sum | cms_curation_mappingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_curation_mappingScalarWhereWithAggregatesInput | cms_curation_mappingScalarWhereWithAggregatesInput[] | No |
| OR | cms_curation_mappingScalarWhereWithAggregatesInput[] | No |
| NOT | cms_curation_mappingScalarWhereWithAggregatesInput | cms_curation_mappingScalarWhereWithAggregatesInput[] | No |
| id | BigIntWithAggregatesFilter | BigInt | No |
| resource_id | BigIntWithAggregatesFilter | BigInt | No |
| curation_id | BigIntWithAggregatesFilter | BigInt | No |
| edited | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| sequence | IntNullableWithAggregatesFilter | Int | Null | Yes |
| parameter_values | JsonNullableWithAggregatesFilter | No |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_curation_schedulingWhereInput | cms_curation_schedulingWhereInput[] | No |
| OR | cms_curation_schedulingWhereInput[] | No |
| NOT | cms_curation_schedulingWhereInput | cms_curation_schedulingWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| curation_id | BigIntFilter | BigInt | No |
| title | JsonNullableFilter | No |
| key | StringNullableFilter | String | Null | Yes |
| territory | StringNullableFilter | String | Null | Yes |
| description | StringFilter | String | No |
| status | StringFilter | String | No |
| published_date | DateTimeNullableFilter | DateTime | Null | Yes |
| synchronized | BoolFilter | Boolean | No |
| enabled | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_curation_scheduling_item | Cms_curation_scheduling_itemListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| curation_id | SortOrder | No |
| title | SortOrder | SortOrderInput | No |
| key | SortOrder | SortOrderInput | No |
| territory | SortOrder | SortOrderInput | No |
| description | SortOrder | No |
| status | SortOrder | No |
| published_date | SortOrder | SortOrderInput | No |
| synchronized | SortOrder | No |
| enabled | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_curation_scheduling_item | cms_curation_scheduling_itemOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key_territory_published_date | cms_curation_schedulingKeyTerritoryPublished_dateCompoundUniqueInput | No |
| AND | cms_curation_schedulingWhereInput | cms_curation_schedulingWhereInput[] | No |
| OR | cms_curation_schedulingWhereInput[] | No |
| NOT | cms_curation_schedulingWhereInput | cms_curation_schedulingWhereInput[] | No |
| curation_id | BigIntFilter | BigInt | No |
| title | JsonNullableFilter | No |
| key | StringNullableFilter | String | Null | Yes |
| territory | StringNullableFilter | String | Null | Yes |
| description | StringFilter | String | No |
| status | StringFilter | String | No |
| published_date | DateTimeNullableFilter | DateTime | Null | Yes |
| synchronized | BoolFilter | Boolean | No |
| enabled | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_curation_scheduling_item | Cms_curation_scheduling_itemListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| curation_id | SortOrder | No |
| title | SortOrder | SortOrderInput | No |
| key | SortOrder | SortOrderInput | No |
| territory | SortOrder | SortOrderInput | No |
| description | SortOrder | No |
| status | SortOrder | No |
| published_date | SortOrder | SortOrderInput | No |
| synchronized | SortOrder | No |
| enabled | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_curation_schedulingCountOrderByAggregateInput | No |
| _avg | cms_curation_schedulingAvgOrderByAggregateInput | No |
| _max | cms_curation_schedulingMaxOrderByAggregateInput | No |
| _min | cms_curation_schedulingMinOrderByAggregateInput | No |
| _sum | cms_curation_schedulingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_curation_scheduling_itemWhereInput | cms_curation_scheduling_itemWhereInput[] | No |
| OR | cms_curation_scheduling_itemWhereInput[] | No |
| NOT | cms_curation_scheduling_itemWhereInput | cms_curation_scheduling_itemWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| parent_id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| curation_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_curation_scheduling | Cms_curation_schedulingRelationFilter | cms_curation_schedulingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| parent_id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| parameter_values | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_curation_scheduling | cms_curation_schedulingOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parent_id_resource_id_curation_id | cms_curation_scheduling_itemParent_idResource_idCuration_idCompoundUniqueInput | No |
| AND | cms_curation_scheduling_itemWhereInput | cms_curation_scheduling_itemWhereInput[] | No |
| OR | cms_curation_scheduling_itemWhereInput[] | No |
| NOT | cms_curation_scheduling_itemWhereInput | cms_curation_scheduling_itemWhereInput[] | No |
| parent_id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| curation_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_curation_scheduling | Cms_curation_schedulingRelationFilter | cms_curation_schedulingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| parent_id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| parameter_values | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_curation_scheduling_itemCountOrderByAggregateInput | No |
| _avg | cms_curation_scheduling_itemAvgOrderByAggregateInput | No |
| _max | cms_curation_scheduling_itemMaxOrderByAggregateInput | No |
| _min | cms_curation_scheduling_itemMinOrderByAggregateInput | No |
| _sum | cms_curation_scheduling_itemSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_curation_scheduling_itemScalarWhereWithAggregatesInput | cms_curation_scheduling_itemScalarWhereWithAggregatesInput[] | No |
| OR | cms_curation_scheduling_itemScalarWhereWithAggregatesInput[] | No |
| NOT | cms_curation_scheduling_itemScalarWhereWithAggregatesInput | cms_curation_scheduling_itemScalarWhereWithAggregatesInput[] | No |
| id | BigIntWithAggregatesFilter | BigInt | No |
| parent_id | BigIntWithAggregatesFilter | BigInt | No |
| resource_id | BigIntWithAggregatesFilter | BigInt | No |
| curation_id | BigIntWithAggregatesFilter | BigInt | No |
| parameter_values | JsonNullableWithAggregatesFilter | No |
| sequence | IntNullableWithAggregatesFilter | Int | Null | Yes |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_hash_tagWhereInput | cms_hash_tagWhereInput[] | No |
| OR | cms_hash_tagWhereInput[] | No |
| NOT | cms_hash_tagWhereInput | cms_hash_tagWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| title | StringFilter | String | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| statistics | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_hash_tag_mapping | Cms_hash_tag_mappingListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| sequence | SortOrder | SortOrderInput | No |
| statistics | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| title | String | No |
| AND | cms_hash_tagWhereInput | cms_hash_tagWhereInput[] | No |
| OR | cms_hash_tagWhereInput[] | No |
| NOT | cms_hash_tagWhereInput | cms_hash_tagWhereInput[] | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| statistics | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_hash_tag_mapping | Cms_hash_tag_mappingListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| sequence | SortOrder | SortOrderInput | No |
| statistics | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_hash_tagCountOrderByAggregateInput | No |
| _avg | cms_hash_tagAvgOrderByAggregateInput | No |
| _max | cms_hash_tagMaxOrderByAggregateInput | No |
| _min | cms_hash_tagMinOrderByAggregateInput | No |
| _sum | cms_hash_tagSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_hash_tagScalarWhereWithAggregatesInput | cms_hash_tagScalarWhereWithAggregatesInput[] | No |
| OR | cms_hash_tagScalarWhereWithAggregatesInput[] | No |
| NOT | cms_hash_tagScalarWhereWithAggregatesInput | cms_hash_tagScalarWhereWithAggregatesInput[] | No |
| id | BigIntWithAggregatesFilter | BigInt | No |
| title | StringWithAggregatesFilter | String | No |
| sequence | IntNullableWithAggregatesFilter | Int | Null | Yes |
| statistics | JsonNullableWithAggregatesFilter | No |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_hash_tag_mappingWhereInput | cms_hash_tag_mappingWhereInput[] | No |
| OR | cms_hash_tag_mappingWhereInput[] | No |
| NOT | cms_hash_tag_mappingWhereInput | cms_hash_tag_mappingWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| hash_tag_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_hash_tag | Cms_hash_tagRelationFilter | cms_hash_tagWhereInput | No |
| cms_resource | Cms_resourceRelationFilter | cms_resourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| hash_tag_id | SortOrder | No |
| parameter_values | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| enable | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_hash_tag | cms_hash_tagOrderByWithRelationInput | No |
| cms_resource | cms_resourceOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id_hash_tag_id | cms_hash_tag_mappingResource_idHash_tag_idCompoundUniqueInput | No |
| id_resource_id | cms_hash_tag_mappingIdResource_idCompoundUniqueInput | No |
| AND | cms_hash_tag_mappingWhereInput | cms_hash_tag_mappingWhereInput[] | No |
| OR | cms_hash_tag_mappingWhereInput[] | No |
| NOT | cms_hash_tag_mappingWhereInput | cms_hash_tag_mappingWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| hash_tag_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_hash_tag | Cms_hash_tagRelationFilter | cms_hash_tagWhereInput | No |
| cms_resource | Cms_resourceRelationFilter | cms_resourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| hash_tag_id | SortOrder | No |
| parameter_values | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| enable | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_hash_tag_mappingCountOrderByAggregateInput | No |
| _avg | cms_hash_tag_mappingAvgOrderByAggregateInput | No |
| _max | cms_hash_tag_mappingMaxOrderByAggregateInput | No |
| _min | cms_hash_tag_mappingMinOrderByAggregateInput | No |
| _sum | cms_hash_tag_mappingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_hash_tag_mappingScalarWhereWithAggregatesInput | cms_hash_tag_mappingScalarWhereWithAggregatesInput[] | No |
| OR | cms_hash_tag_mappingScalarWhereWithAggregatesInput[] | No |
| NOT | cms_hash_tag_mappingScalarWhereWithAggregatesInput | cms_hash_tag_mappingScalarWhereWithAggregatesInput[] | No |
| id | BigIntWithAggregatesFilter | BigInt | No |
| resource_id | BigIntWithAggregatesFilter | BigInt | No |
| hash_tag_id | BigIntWithAggregatesFilter | BigInt | No |
| parameter_values | JsonNullableWithAggregatesFilter | No |
| sequence | IntNullableWithAggregatesFilter | Int | Null | Yes |
| enable | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_label_infoWhereInput | cms_label_infoWhereInput[] | No |
| OR | cms_label_infoWhereInput[] | No |
| NOT | cms_label_infoWhereInput | cms_label_infoWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| key | StringNullableFilter | String | Null | Yes |
| title | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| statistics | JsonNullableFilter | No |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| title_en | StringNullableFilter | String | Null | Yes |
| title_zhtw | StringNullableFilter | String | Null | Yes |
| title_inid | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | SortOrderInput | No |
| title | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| statistics | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | SortOrderInput | No |
| title_zhtw | SortOrder | SortOrderInput | No |
| title_inid | SortOrder | SortOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | No |
| AND | cms_label_infoWhereInput | cms_label_infoWhereInput[] | No |
| OR | cms_label_infoWhereInput[] | No |
| NOT | cms_label_infoWhereInput | cms_label_infoWhereInput[] | No |
| title | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| statistics | JsonNullableFilter | No |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| title_en | StringNullableFilter | String | Null | Yes |
| title_zhtw | StringNullableFilter | String | Null | Yes |
| title_inid | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | SortOrderInput | No |
| title | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| statistics | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | SortOrderInput | No |
| title_zhtw | SortOrder | SortOrderInput | No |
| title_inid | SortOrder | SortOrderInput | No |
| _count | cms_label_infoCountOrderByAggregateInput | No |
| _avg | cms_label_infoAvgOrderByAggregateInput | No |
| _max | cms_label_infoMaxOrderByAggregateInput | No |
| _min | cms_label_infoMinOrderByAggregateInput | No |
| _sum | cms_label_infoSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_label_infoScalarWhereWithAggregatesInput | cms_label_infoScalarWhereWithAggregatesInput[] | No |
| OR | cms_label_infoScalarWhereWithAggregatesInput[] | No |
| NOT | cms_label_infoScalarWhereWithAggregatesInput | cms_label_infoScalarWhereWithAggregatesInput[] | No |
| id | BigIntWithAggregatesFilter | BigInt | No |
| key | StringNullableWithAggregatesFilter | String | Null | Yes |
| title | JsonNullableWithAggregatesFilter | No |
| sequence | IntNullableWithAggregatesFilter | Int | Null | Yes |
| statistics | JsonNullableWithAggregatesFilter | No |
| parameter_values | JsonNullableWithAggregatesFilter | No |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| title_en | StringNullableWithAggregatesFilter | String | Null | Yes |
| title_zhtw | StringNullableWithAggregatesFilter | String | Null | Yes |
| title_inid | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_label_info_mappingWhereInput | cms_label_info_mappingWhereInput[] | No |
| OR | cms_label_info_mappingWhereInput[] | No |
| NOT | cms_label_info_mappingWhereInput | cms_label_info_mappingWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| mapping_type | StringFilter | String | No |
| detail_mapping_id | StringFilter | String | No |
| label_info_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| mapping_type | SortOrder | No |
| detail_mapping_id | SortOrder | No |
| label_info_id | SortOrder | No |
| parameter_values | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| enable | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| detail_mapping_id_label_info_id | cms_label_info_mappingDetail_mapping_idLabel_info_idCompoundUniqueInput | No |
| AND | cms_label_info_mappingWhereInput | cms_label_info_mappingWhereInput[] | No |
| OR | cms_label_info_mappingWhereInput[] | No |
| NOT | cms_label_info_mappingWhereInput | cms_label_info_mappingWhereInput[] | No |
| mapping_type | StringFilter | String | No |
| detail_mapping_id | StringFilter | String | No |
| label_info_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| mapping_type | SortOrder | No |
| detail_mapping_id | SortOrder | No |
| label_info_id | SortOrder | No |
| parameter_values | SortOrder | SortOrderInput | No |
| sequence | SortOrder | SortOrderInput | No |
| enable | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_label_info_mappingCountOrderByAggregateInput | No |
| _avg | cms_label_info_mappingAvgOrderByAggregateInput | No |
| _max | cms_label_info_mappingMaxOrderByAggregateInput | No |
| _min | cms_label_info_mappingMinOrderByAggregateInput | No |
| _sum | cms_label_info_mappingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_label_info_mappingScalarWhereWithAggregatesInput | cms_label_info_mappingScalarWhereWithAggregatesInput[] | No |
| OR | cms_label_info_mappingScalarWhereWithAggregatesInput[] | No |
| NOT | cms_label_info_mappingScalarWhereWithAggregatesInput | cms_label_info_mappingScalarWhereWithAggregatesInput[] | No |
| id | BigIntWithAggregatesFilter | BigInt | No |
| mapping_type | StringWithAggregatesFilter | String | No |
| detail_mapping_id | StringWithAggregatesFilter | String | No |
| label_info_id | BigIntWithAggregatesFilter | BigInt | No |
| parameter_values | JsonNullableWithAggregatesFilter | No |
| sequence | IntNullableWithAggregatesFilter | Int | Null | Yes |
| enable | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_published_settingWhereInput | cms_published_settingWhereInput[] | No |
| OR | cms_published_settingWhereInput[] | No |
| NOT | cms_published_settingWhereInput | cms_published_settingWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| territory | StringFilter | String | No |
| published_date | DateTimeFilter | DateTime | No |
| unpublished_date | DateTimeFilter | DateTime | No |
| show_start_date | DateTimeNullableFilter | DateTime | Null | Yes |
| show_end_date | DateTimeNullableFilter | DateTime | Null | Yes |
| play_start_date | DateTimeNullableFilter | DateTime | Null | Yes |
| play_end_date | DateTimeNullableFilter | DateTime | Null | Yes |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_resource | Cms_resourceRelationFilter | cms_resourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| published_date | SortOrder | No |
| unpublished_date | SortOrder | No |
| show_start_date | SortOrder | SortOrderInput | No |
| show_end_date | SortOrder | SortOrderInput | No |
| play_start_date | SortOrder | SortOrderInput | No |
| play_end_date | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_resource | cms_resourceOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id_territory_published_date_unpublished_date | cms_published_settingResource_idTerritoryPublished_dateUnpublished_dateCompoundUniqueInput | No |
| AND | cms_published_settingWhereInput | cms_published_settingWhereInput[] | No |
| OR | cms_published_settingWhereInput[] | No |
| NOT | cms_published_settingWhereInput | cms_published_settingWhereInput[] | No |
| resource_id | BigIntFilter | BigInt | No |
| territory | StringFilter | String | No |
| published_date | DateTimeFilter | DateTime | No |
| unpublished_date | DateTimeFilter | DateTime | No |
| show_start_date | DateTimeNullableFilter | DateTime | Null | Yes |
| show_end_date | DateTimeNullableFilter | DateTime | Null | Yes |
| play_start_date | DateTimeNullableFilter | DateTime | Null | Yes |
| play_end_date | DateTimeNullableFilter | DateTime | Null | Yes |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_resource | Cms_resourceRelationFilter | cms_resourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| published_date | SortOrder | No |
| unpublished_date | SortOrder | No |
| show_start_date | SortOrder | SortOrderInput | No |
| show_end_date | SortOrder | SortOrderInput | No |
| play_start_date | SortOrder | SortOrderInput | No |
| play_end_date | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_published_settingCountOrderByAggregateInput | No |
| _avg | cms_published_settingAvgOrderByAggregateInput | No |
| _max | cms_published_settingMaxOrderByAggregateInput | No |
| _min | cms_published_settingMinOrderByAggregateInput | No |
| _sum | cms_published_settingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_resourceWhereInput | cms_resourceWhereInput[] | No |
| OR | cms_resourceWhereInput[] | No |
| NOT | cms_resourceWhereInput | cms_resourceWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| key | StringNullableFilter | String | Null | Yes |
| code | StringNullableFilter | String | Null | Yes |
| type | StringFilter | String | No |
| title | JsonNullableFilter | No |
| channel_code | StringFilter | String | No |
| licensor_id | BigIntFilter | BigInt | No |
| company_id | StringFilter | String | No |
| territory | StringFilter | String | No |
| default_territory | StringNullableFilter | String | Null | Yes |
| status | StringFilter | String | No |
| partner_resource_id | StringNullableFilter | String | Null | Yes |
| published_date | DateTimeNullableFilter | DateTime | Null | Yes |
| unpublished_date | DateTimeNullableFilter | DateTime | Null | Yes |
| enable | IntFilter | Int | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| title_en | StringNullableFilter | String | Null | Yes |
| title_zhtw | StringNullableFilter | String | Null | Yes |
| title_inid | StringNullableFilter | String | Null | Yes |
| cms_category_mapping | Cms_category_mappingListRelationFilter | No |
| cms_hash_tag_mapping | Cms_hash_tag_mappingListRelationFilter | No |
| cms_published_setting | Cms_published_settingListRelationFilter | No |
| cms_resource_import_log | Cms_resource_import_logListRelationFilter | No |
| cms_resource_parameter | Cms_resource_parameterListRelationFilter | No |
| cms_resource_statistics | Cms_resource_statisticsListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | No |
| code | String | No |
| partner_resource_id_channel_code | cms_resourcePartner_resource_idChannel_codeCompoundUniqueInput | No |
| AND | cms_resourceWhereInput | cms_resourceWhereInput[] | No |
| OR | cms_resourceWhereInput[] | No |
| NOT | cms_resourceWhereInput | cms_resourceWhereInput[] | No |
| type | StringFilter | String | No |
| title | JsonNullableFilter | No |
| channel_code | StringFilter | String | No |
| licensor_id | BigIntFilter | BigInt | No |
| company_id | StringFilter | String | No |
| territory | StringFilter | String | No |
| default_territory | StringNullableFilter | String | Null | Yes |
| status | StringFilter | String | No |
| partner_resource_id | StringNullableFilter | String | Null | Yes |
| published_date | DateTimeNullableFilter | DateTime | Null | Yes |
| unpublished_date | DateTimeNullableFilter | DateTime | Null | Yes |
| enable | IntFilter | Int | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| title_en | StringNullableFilter | String | Null | Yes |
| title_zhtw | StringNullableFilter | String | Null | Yes |
| title_inid | StringNullableFilter | String | Null | Yes |
| cms_category_mapping | Cms_category_mappingListRelationFilter | No |
| cms_hash_tag_mapping | Cms_hash_tag_mappingListRelationFilter | No |
| cms_published_setting | Cms_published_settingListRelationFilter | No |
| cms_resource_import_log | Cms_resource_import_logListRelationFilter | No |
| cms_resource_parameter | Cms_resource_parameterListRelationFilter | No |
| cms_resource_statistics | Cms_resource_statisticsListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | SortOrderInput | No |
| code | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| title | SortOrder | SortOrderInput | No |
| channel_code | SortOrder | No |
| licensor_id | SortOrder | No |
| company_id | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| partner_resource_id | SortOrder | SortOrderInput | No |
| published_date | SortOrder | SortOrderInput | No |
| unpublished_date | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | SortOrderInput | No |
| title_zhtw | SortOrder | SortOrderInput | No |
| title_inid | SortOrder | SortOrderInput | No |
| _count | cms_resourceCountOrderByAggregateInput | No |
| _avg | cms_resourceAvgOrderByAggregateInput | No |
| _max | cms_resourceMaxOrderByAggregateInput | No |
| _min | cms_resourceMinOrderByAggregateInput | No |
| _sum | cms_resourceSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_resource_import_logWhereInput | cms_resource_import_logWhereInput[] | No |
| OR | cms_resource_import_logWhereInput[] | No |
| NOT | cms_resource_import_logWhereInput | cms_resource_import_logWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| partner_resource_id | StringNullableFilter | String | Null | Yes |
| channel_code | StringNullableFilter | String | Null | Yes |
| resource_id | BigIntNullableFilter | BigInt | Null | Yes |
| execute_process | StringFilter | String | No |
| execute_status | StringFilter | String | No |
| imp_result | JsonNullableFilter | No |
| poster_import | IntFilter | Int | No |
| poster_type | StringNullableFilter | String | Null | Yes |
| video_import | IntFilter | Int | No |
| oa_task_job_id | BigIntFilter | BigInt | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_resource | Cms_resourceNullableRelationFilter | cms_resourceWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| partner_resource_id | SortOrder | SortOrderInput | No |
| channel_code | SortOrder | SortOrderInput | No |
| resource_id | SortOrder | SortOrderInput | No |
| execute_process | SortOrder | No |
| execute_status | SortOrder | No |
| imp_result | SortOrder | SortOrderInput | No |
| poster_import | SortOrder | No |
| poster_type | SortOrder | SortOrderInput | No |
| video_import | SortOrder | No |
| oa_task_job_id | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_resource | cms_resourceOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| AND | cms_resource_import_logWhereInput | cms_resource_import_logWhereInput[] | No |
| OR | cms_resource_import_logWhereInput[] | No |
| NOT | cms_resource_import_logWhereInput | cms_resource_import_logWhereInput[] | No |
| partner_resource_id | StringNullableFilter | String | Null | Yes |
| channel_code | StringNullableFilter | String | Null | Yes |
| resource_id | BigIntNullableFilter | BigInt | Null | Yes |
| execute_process | StringFilter | String | No |
| execute_status | StringFilter | String | No |
| imp_result | JsonNullableFilter | No |
| poster_import | IntFilter | Int | No |
| poster_type | StringNullableFilter | String | Null | Yes |
| video_import | IntFilter | Int | No |
| oa_task_job_id | BigIntFilter | BigInt | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_resource | Cms_resourceNullableRelationFilter | cms_resourceWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| partner_resource_id | SortOrder | SortOrderInput | No |
| channel_code | SortOrder | SortOrderInput | No |
| resource_id | SortOrder | SortOrderInput | No |
| execute_process | SortOrder | No |
| execute_status | SortOrder | No |
| imp_result | SortOrder | SortOrderInput | No |
| poster_import | SortOrder | No |
| poster_type | SortOrder | SortOrderInput | No |
| video_import | SortOrder | No |
| oa_task_job_id | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_resource_import_logCountOrderByAggregateInput | No |
| _avg | cms_resource_import_logAvgOrderByAggregateInput | No |
| _max | cms_resource_import_logMaxOrderByAggregateInput | No |
| _min | cms_resource_import_logMinOrderByAggregateInput | No |
| _sum | cms_resource_import_logSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| master_code | SortOrder | SortOrderInput | No |
| master_key | SortOrder | SortOrderInput | No |
| master_type | SortOrder | SortOrderInput | No |
| video_id | SortOrder | SortOrderInput | No |
| duration | SortOrder | SortOrderInput | No |
| show_direction | SortOrder | SortOrderInput | No |
| sub_statuses | SortOrder | SortOrderInput | No |
| detail | SortOrder | SortOrderInput | No |
| description | SortOrder | SortOrderInput | No |
| player_info | SortOrder | SortOrderInput | No |
| posters | SortOrder | SortOrderInput | No |
| category_info | SortOrder | SortOrderInput | No |
| label_info | SortOrder | SortOrderInput | No |
| hash_tag_info | SortOrder | SortOrderInput | No |
| seo_info | SortOrder | SortOrderInput | No |
| parameter_values | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| artwork_status | SortOrder | SortOrderInput | No |
| transcoding_status | SortOrder | SortOrderInput | No |
| cms_resource | cms_resourceOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_resource_statisticsWhereInput | cms_resource_statisticsWhereInput[] | No |
| OR | cms_resource_statisticsWhereInput[] | No |
| NOT | cms_resource_statisticsWhereInput | cms_resource_statisticsWhereInput[] | No |
| resource_id | BigIntFilter | BigInt | No |
| territory | StringFilter | String | No |
| statistics | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_resource | Cms_resourceRelationFilter | cms_resourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| statistics | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| cms_resource | cms_resourceOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id_territory | cms_resource_statisticsResource_idTerritoryCompoundUniqueInput | No |
| AND | cms_resource_statisticsWhereInput | cms_resource_statisticsWhereInput[] | No |
| OR | cms_resource_statisticsWhereInput[] | No |
| NOT | cms_resource_statisticsWhereInput | cms_resource_statisticsWhereInput[] | No |
| resource_id | BigIntFilter | BigInt | No |
| territory | StringFilter | String | No |
| statistics | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| cms_resource | Cms_resourceRelationFilter | cms_resourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| statistics | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | cms_resource_statisticsCountOrderByAggregateInput | No |
| _avg | cms_resource_statisticsAvgOrderByAggregateInput | No |
| _max | cms_resource_statisticsMaxOrderByAggregateInput | No |
| _min | cms_resource_statisticsMinOrderByAggregateInput | No |
| _sum | cms_resource_statisticsSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_resource_statisticsScalarWhereWithAggregatesInput | cms_resource_statisticsScalarWhereWithAggregatesInput[] | No |
| OR | cms_resource_statisticsScalarWhereWithAggregatesInput[] | No |
| NOT | cms_resource_statisticsScalarWhereWithAggregatesInput | cms_resource_statisticsScalarWhereWithAggregatesInput[] | No |
| resource_id | BigIntWithAggregatesFilter | BigInt | No |
| territory | StringWithAggregatesFilter | String | No |
| statistics | JsonNullableWithAggregatesFilter | No |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | oa_change_logsWhereInput | oa_change_logsWhereInput[] | No |
| OR | oa_change_logsWhereInput[] | No |
| NOT | oa_change_logsWhereInput | oa_change_logsWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| territory | StringFilter | String | No |
| function_name | StringFilter | String | No |
| mapping_id | StringFilter | String | No |
| sub_function_name | StringNullableFilter | String | Null | Yes |
| sub_mapping_id | StringNullableFilter | String | Null | Yes |
| comment | StringFilter | String | No |
| action | StringFilter | String | No |
| before | JsonNullableFilter | No |
| after | JsonNullableFilter | No |
| jira_no | StringNullableFilter | String | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| function_name | SortOrder | No |
| mapping_id | SortOrder | No |
| sub_function_name | SortOrder | SortOrderInput | No |
| sub_mapping_id | SortOrder | SortOrderInput | No |
| comment | SortOrder | No |
| action | SortOrder | No |
| before | SortOrder | SortOrderInput | No |
| after | SortOrder | SortOrderInput | No |
| jira_no | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| AND | oa_change_logsWhereInput | oa_change_logsWhereInput[] | No |
| OR | oa_change_logsWhereInput[] | No |
| NOT | oa_change_logsWhereInput | oa_change_logsWhereInput[] | No |
| territory | StringFilter | String | No |
| function_name | StringFilter | String | No |
| mapping_id | StringFilter | String | No |
| sub_function_name | StringNullableFilter | String | Null | Yes |
| sub_mapping_id | StringNullableFilter | String | Null | Yes |
| comment | StringFilter | String | No |
| action | StringFilter | String | No |
| before | JsonNullableFilter | No |
| after | JsonNullableFilter | No |
| jira_no | StringNullableFilter | String | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| function_name | SortOrder | No |
| mapping_id | SortOrder | No |
| sub_function_name | SortOrder | SortOrderInput | No |
| sub_mapping_id | SortOrder | SortOrderInput | No |
| comment | SortOrder | No |
| action | SortOrder | No |
| before | SortOrder | SortOrderInput | No |
| after | SortOrder | SortOrderInput | No |
| jira_no | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | oa_change_logsCountOrderByAggregateInput | No |
| _avg | oa_change_logsAvgOrderByAggregateInput | No |
| _max | oa_change_logsMaxOrderByAggregateInput | No |
| _min | oa_change_logsMinOrderByAggregateInput | No |
| _sum | oa_change_logsSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | oa_change_logsScalarWhereWithAggregatesInput | oa_change_logsScalarWhereWithAggregatesInput[] | No |
| OR | oa_change_logsScalarWhereWithAggregatesInput[] | No |
| NOT | oa_change_logsScalarWhereWithAggregatesInput | oa_change_logsScalarWhereWithAggregatesInput[] | No |
| id | BigIntWithAggregatesFilter | BigInt | No |
| territory | StringWithAggregatesFilter | String | No |
| function_name | StringWithAggregatesFilter | String | No |
| mapping_id | StringWithAggregatesFilter | String | No |
| sub_function_name | StringNullableWithAggregatesFilter | String | Null | Yes |
| sub_mapping_id | StringNullableWithAggregatesFilter | String | Null | Yes |
| comment | StringWithAggregatesFilter | String | No |
| action | StringWithAggregatesFilter | String | No |
| before | JsonNullableWithAggregatesFilter | No |
| after | JsonNullableWithAggregatesFilter | No |
| jira_no | StringNullableWithAggregatesFilter | String | Null | Yes |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | oa_licensorWhereInput | oa_licensorWhereInput[] | No |
| OR | oa_licensorWhereInput[] | No |
| NOT | oa_licensorWhereInput | oa_licensorWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| licensor_key | StringFilter | String | No |
| code | StringNullableFilter | String | Null | Yes |
| company_name | StringNullableFilter | String | Null | Yes |
| category | StringNullableFilter | String | Null | Yes |
| contact_name | StringNullableFilter | String | Null | Yes |
| contact_phone | StringNullableFilter | String | Null | Yes |
| contact_email | StringNullableFilter | String | Null | Yes |
| contact_mobile | StringNullableFilter | String | Null | Yes |
| s3_bucket_name | StringNullableFilter | String | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_key | SortOrder | No |
| code | SortOrder | SortOrderInput | No |
| company_name | SortOrder | SortOrderInput | No |
| category | SortOrder | SortOrderInput | No |
| contact_name | SortOrder | SortOrderInput | No |
| contact_phone | SortOrder | SortOrderInput | No |
| contact_email | SortOrder | SortOrderInput | No |
| contact_mobile | SortOrder | SortOrderInput | No |
| s3_bucket_name | SortOrder | SortOrderInput | No |
| enable | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| code_licensor_key | oa_licensorCodeLicensor_keyCompoundUniqueInput | No |
| AND | oa_licensorWhereInput | oa_licensorWhereInput[] | No |
| OR | oa_licensorWhereInput[] | No |
| NOT | oa_licensorWhereInput | oa_licensorWhereInput[] | No |
| licensor_key | StringFilter | String | No |
| code | StringNullableFilter | String | Null | Yes |
| company_name | StringNullableFilter | String | Null | Yes |
| category | StringNullableFilter | String | Null | Yes |
| contact_name | StringNullableFilter | String | Null | Yes |
| contact_phone | StringNullableFilter | String | Null | Yes |
| contact_email | StringNullableFilter | String | Null | Yes |
| contact_mobile | StringNullableFilter | String | Null | Yes |
| s3_bucket_name | StringNullableFilter | String | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_key | SortOrder | No |
| code | SortOrder | SortOrderInput | No |
| company_name | SortOrder | SortOrderInput | No |
| category | SortOrder | SortOrderInput | No |
| contact_name | SortOrder | SortOrderInput | No |
| contact_phone | SortOrder | SortOrderInput | No |
| contact_email | SortOrder | SortOrderInput | No |
| contact_mobile | SortOrder | SortOrderInput | No |
| s3_bucket_name | SortOrder | SortOrderInput | No |
| enable | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | oa_licensorCountOrderByAggregateInput | No |
| _avg | oa_licensorAvgOrderByAggregateInput | No |
| _max | oa_licensorMaxOrderByAggregateInput | No |
| _min | oa_licensorMinOrderByAggregateInput | No |
| _sum | oa_licensorSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | oa_system_codeWhereInput | oa_system_codeWhereInput[] | No |
| OR | oa_system_codeWhereInput[] | No |
| NOT | oa_system_codeWhereInput | oa_system_codeWhereInput[] | No |
| code_type | StringFilter | String | No |
| territory | StringFilter | String | No |
| code_type_name | JsonNullableFilter | No |
| show_sequence | IntFilter | Int | No |
| used_flag | BoolFilter | Boolean | No |
| up_level_type | StringNullableFilter | String | Null | Yes |
| memo | StringNullableFilter | String | Null | Yes |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| code_type_name_local | StringNullableFilter | String | Null | Yes |
| code_type_name_eng | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| code_type | SortOrder | No |
| territory | SortOrder | No |
| code_type_name | SortOrder | SortOrderInput | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | SortOrderInput | No |
| memo | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_type_name_local | SortOrder | SortOrderInput | No |
| code_type_name_eng | SortOrder | SortOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| code_type_territory | oa_system_codeCode_typeTerritoryCompoundUniqueInput | No |
| AND | oa_system_codeWhereInput | oa_system_codeWhereInput[] | No |
| OR | oa_system_codeWhereInput[] | No |
| NOT | oa_system_codeWhereInput | oa_system_codeWhereInput[] | No |
| code_type | StringFilter | String | No |
| territory | StringFilter | String | No |
| code_type_name | JsonNullableFilter | No |
| show_sequence | IntFilter | Int | No |
| used_flag | BoolFilter | Boolean | No |
| up_level_type | StringNullableFilter | String | Null | Yes |
| memo | StringNullableFilter | String | Null | Yes |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| code_type_name_local | StringNullableFilter | String | Null | Yes |
| code_type_name_eng | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| code_type | SortOrder | No |
| territory | SortOrder | No |
| code_type_name | SortOrder | SortOrderInput | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | SortOrderInput | No |
| memo | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_type_name_local | SortOrder | SortOrderInput | No |
| code_type_name_eng | SortOrder | SortOrderInput | No |
| _count | oa_system_codeCountOrderByAggregateInput | No |
| _avg | oa_system_codeAvgOrderByAggregateInput | No |
| _max | oa_system_codeMaxOrderByAggregateInput | No |
| _min | oa_system_codeMinOrderByAggregateInput | No |
| _sum | oa_system_codeSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | oa_system_code_detailWhereInput | oa_system_code_detailWhereInput[] | No |
| OR | oa_system_code_detailWhereInput[] | No |
| NOT | oa_system_code_detailWhereInput | oa_system_code_detailWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| code_type | StringFilter | String | No |
| territory | StringFilter | String | No |
| code | StringFilter | String | No |
| code_group | StringNullableFilter | String | Null | Yes |
| value_type | StringNullableFilter | String | Null | Yes |
| code_name | JsonNullableFilter | No |
| code_parameter | JsonNullableFilter | No |
| show_sequence | IntFilter | Int | No |
| used_flag | BoolFilter | Boolean | No |
| up_level_type | StringNullableFilter | String | Null | Yes |
| memo | StringNullableFilter | String | Null | Yes |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| code_name_local | StringNullableFilter | String | Null | Yes |
| code_name_eng | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code_type | SortOrder | No |
| territory | SortOrder | No |
| code | SortOrder | No |
| code_group | SortOrder | SortOrderInput | No |
| value_type | SortOrder | SortOrderInput | No |
| code_name | SortOrder | SortOrderInput | No |
| code_parameter | SortOrder | SortOrderInput | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | SortOrderInput | No |
| memo | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_name_local | SortOrder | SortOrderInput | No |
| code_name_eng | SortOrder | SortOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| AND | oa_system_code_detailWhereInput | oa_system_code_detailWhereInput[] | No |
| OR | oa_system_code_detailWhereInput[] | No |
| NOT | oa_system_code_detailWhereInput | oa_system_code_detailWhereInput[] | No |
| code_type | StringFilter | String | No |
| territory | StringFilter | String | No |
| code | StringFilter | String | No |
| code_group | StringNullableFilter | String | Null | Yes |
| value_type | StringNullableFilter | String | Null | Yes |
| code_name | JsonNullableFilter | No |
| code_parameter | JsonNullableFilter | No |
| show_sequence | IntFilter | Int | No |
| used_flag | BoolFilter | Boolean | No |
| up_level_type | StringNullableFilter | String | Null | Yes |
| memo | StringNullableFilter | String | Null | Yes |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| code_name_local | StringNullableFilter | String | Null | Yes |
| code_name_eng | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code_type | SortOrder | No |
| territory | SortOrder | No |
| code | SortOrder | No |
| code_group | SortOrder | SortOrderInput | No |
| value_type | SortOrder | SortOrderInput | No |
| code_name | SortOrder | SortOrderInput | No |
| code_parameter | SortOrder | SortOrderInput | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | SortOrderInput | No |
| memo | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_name_local | SortOrder | SortOrderInput | No |
| code_name_eng | SortOrder | SortOrderInput | No |
| _count | oa_system_code_detailCountOrderByAggregateInput | No |
| _avg | oa_system_code_detailAvgOrderByAggregateInput | No |
| _max | oa_system_code_detailMaxOrderByAggregateInput | No |
| _min | oa_system_code_detailMinOrderByAggregateInput | No |
| _sum | oa_system_code_detailSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | oa_task_jobWhereInput | oa_task_jobWhereInput[] | No |
| OR | oa_task_jobWhereInput[] | No |
| NOT | oa_task_jobWhereInput | oa_task_jobWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| task_label | StringFilter | String | No |
| job_name | StringFilter | String | No |
| task_name | StringFilter | String | No |
| task_target | StringFilter | String | No |
| execution_time | DateTimeNullableFilter | DateTime | Null | Yes |
| execution_script | StringNullableFilter | String | Null | Yes |
| execution_log | JsonNullableFilter | No |
| executed | IntFilter | Int | No |
| exec_start_date | DateTimeNullableFilter | DateTime | Null | Yes |
| exec_end_date | DateTimeNullableFilter | DateTime | Null | Yes |
| enable | IntFilter | Int | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| task_label | SortOrder | No |
| job_name | SortOrder | No |
| task_name | SortOrder | No |
| task_target | SortOrder | No |
| execution_time | SortOrder | SortOrderInput | No |
| execution_script | SortOrder | SortOrderInput | No |
| execution_log | SortOrder | SortOrderInput | No |
| executed | SortOrder | No |
| exec_start_date | SortOrder | SortOrderInput | No |
| exec_end_date | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| AND | oa_task_jobWhereInput | oa_task_jobWhereInput[] | No |
| OR | oa_task_jobWhereInput[] | No |
| NOT | oa_task_jobWhereInput | oa_task_jobWhereInput[] | No |
| task_label | StringFilter | String | No |
| job_name | StringFilter | String | No |
| task_name | StringFilter | String | No |
| task_target | StringFilter | String | No |
| execution_time | DateTimeNullableFilter | DateTime | Null | Yes |
| execution_script | StringNullableFilter | String | Null | Yes |
| execution_log | JsonNullableFilter | No |
| executed | IntFilter | Int | No |
| exec_start_date | DateTimeNullableFilter | DateTime | Null | Yes |
| exec_end_date | DateTimeNullableFilter | DateTime | Null | Yes |
| enable | IntFilter | Int | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| task_label | SortOrder | No |
| job_name | SortOrder | No |
| task_name | SortOrder | No |
| task_target | SortOrder | No |
| execution_time | SortOrder | SortOrderInput | No |
| execution_script | SortOrder | SortOrderInput | No |
| execution_log | SortOrder | SortOrderInput | No |
| executed | SortOrder | No |
| exec_start_date | SortOrder | SortOrderInput | No |
| exec_end_date | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | oa_task_jobCountOrderByAggregateInput | No |
| _avg | oa_task_jobAvgOrderByAggregateInput | No |
| _max | oa_task_jobMaxOrderByAggregateInput | No |
| _min | oa_task_jobMinOrderByAggregateInput | No |
| _sum | oa_task_jobSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | oa_territoryWhereInput | oa_territoryWhereInput[] | No |
| OR | oa_territoryWhereInput[] | No |
| NOT | oa_territoryWhereInput | oa_territoryWhereInput[] | No |
| id | StringFilter | String | No |
| code | StringFilter | String | No |
| title | StringNullableFilter | String | Null | Yes |
| default_territory | StringFilter | String | No |
| language | StringFilter | String | No |
| default_language | StringFilter | String | No |
| timezone | StringNullableFilter | String | Null | Yes |
| priority | IntNullableFilter | Int | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| title | SortOrder | SortOrderInput | No |
| default_territory | SortOrder | No |
| language | SortOrder | No |
| default_language | SortOrder | No |
| timezone | SortOrder | SortOrderInput | No |
| priority | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| AND | oa_territoryWhereInput | oa_territoryWhereInput[] | No |
| OR | oa_territoryWhereInput[] | No |
| NOT | oa_territoryWhereInput | oa_territoryWhereInput[] | No |
| title | StringNullableFilter | String | Null | Yes |
| default_territory | StringFilter | String | No |
| language | StringFilter | String | No |
| default_language | StringFilter | String | No |
| timezone | StringNullableFilter | String | Null | Yes |
| priority | IntNullableFilter | Int | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| title | SortOrder | SortOrderInput | No |
| default_territory | SortOrder | No |
| language | SortOrder | No |
| default_language | SortOrder | No |
| timezone | SortOrder | SortOrderInput | No |
| priority | SortOrder | SortOrderInput | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | oa_territoryCountOrderByAggregateInput | No |
| _avg | oa_territoryAvgOrderByAggregateInput | No |
| _max | oa_territoryMaxOrderByAggregateInput | No |
| _min | oa_territoryMinOrderByAggregateInput | No |
| _sum | oa_territorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | oa_territoryScalarWhereWithAggregatesInput | oa_territoryScalarWhereWithAggregatesInput[] | No |
| OR | oa_territoryScalarWhereWithAggregatesInput[] | No |
| NOT | oa_territoryScalarWhereWithAggregatesInput | oa_territoryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| code | StringWithAggregatesFilter | String | No |
| title | StringNullableWithAggregatesFilter | String | Null | Yes |
| default_territory | StringWithAggregatesFilter | String | No |
| language | StringWithAggregatesFilter | String | No |
| default_language | StringWithAggregatesFilter | String | No |
| timezone | StringNullableWithAggregatesFilter | String | Null | Yes |
| priority | IntNullableWithAggregatesFilter | Int | Null | Yes |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | system_functionWhereInput | system_functionWhereInput[] | No |
| OR | system_functionWhereInput[] | No |
| NOT | system_functionWhereInput | system_functionWhereInput[] | No |
| id | StringFilter | String | No |
| menu_id | StringFilter | String | No |
| name | StringFilter | String | No |
| show_name | StringFilter | String | No |
| icon | StringNullableFilter | String | Null | Yes |
| type | StringFilter | String | No |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| menu_id | SortOrder | No |
| name | SortOrder | No |
| show_name | SortOrder | No |
| icon | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | system_functionWhereInput | system_functionWhereInput[] | No |
| OR | system_functionWhereInput[] | No |
| NOT | system_functionWhereInput | system_functionWhereInput[] | No |
| menu_id | StringFilter | String | No |
| name | StringFilter | String | No |
| show_name | StringFilter | String | No |
| icon | StringNullableFilter | String | Null | Yes |
| type | StringFilter | String | No |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| menu_id | SortOrder | No |
| name | SortOrder | No |
| show_name | SortOrder | No |
| icon | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | system_functionCountOrderByAggregateInput | No |
| _max | system_functionMaxOrderByAggregateInput | No |
| _min | system_functionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | system_functionScalarWhereWithAggregatesInput | system_functionScalarWhereWithAggregatesInput[] | No |
| OR | system_functionScalarWhereWithAggregatesInput[] | No |
| NOT | system_functionScalarWhereWithAggregatesInput | system_functionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| menu_id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| show_name | StringWithAggregatesFilter | String | No |
| icon | StringNullableWithAggregatesFilter | String | Null | Yes |
| type | StringWithAggregatesFilter | String | No |
| enable | BoolWithAggregatesFilter | Boolean | No |
| created_user | StringWithAggregatesFilter | String | No |
| created_date | DateTimeWithAggregatesFilter | DateTime | No |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | system_menuWhereInput | system_menuWhereInput[] | No |
| OR | system_menuWhereInput[] | No |
| NOT | system_menuWhereInput | system_menuWhereInput[] | No |
| id | StringFilter | String | No |
| cascade_id | StringNullableFilter | String | Null | Yes |
| name | StringFilter | String | No |
| pathname | StringFilter | String | No |
| icon | StringNullableFilter | String | Null | Yes |
| show_in_menu | BoolFilter | Boolean | No |
| is_web_page | BoolFilter | Boolean | No |
| is_need_login | BoolFilter | Boolean | No |
| parent_id | StringNullableFilter | String | Null | Yes |
| table_memo | StringNullableFilter | String | Null | Yes |
| sort | IntFilter | Int | No |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cascade_id | SortOrder | SortOrderInput | No |
| name | SortOrder | No |
| pathname | SortOrder | No |
| icon | SortOrder | SortOrderInput | No |
| show_in_menu | SortOrder | No |
| is_web_page | SortOrder | No |
| is_need_login | SortOrder | No |
| parent_id | SortOrder | SortOrderInput | No |
| table_memo | SortOrder | SortOrderInput | No |
| sort | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | system_menuWhereInput | system_menuWhereInput[] | No |
| OR | system_menuWhereInput[] | No |
| NOT | system_menuWhereInput | system_menuWhereInput[] | No |
| cascade_id | StringNullableFilter | String | Null | Yes |
| name | StringFilter | String | No |
| pathname | StringFilter | String | No |
| icon | StringNullableFilter | String | Null | Yes |
| show_in_menu | BoolFilter | Boolean | No |
| is_web_page | BoolFilter | Boolean | No |
| is_need_login | BoolFilter | Boolean | No |
| parent_id | StringNullableFilter | String | Null | Yes |
| table_memo | StringNullableFilter | String | Null | Yes |
| sort | IntFilter | Int | No |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cascade_id | SortOrder | SortOrderInput | No |
| name | SortOrder | No |
| pathname | SortOrder | No |
| icon | SortOrder | SortOrderInput | No |
| show_in_menu | SortOrder | No |
| is_web_page | SortOrder | No |
| is_need_login | SortOrder | No |
| parent_id | SortOrder | SortOrderInput | No |
| table_memo | SortOrder | SortOrderInput | No |
| sort | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | system_menuCountOrderByAggregateInput | No |
| _avg | system_menuAvgOrderByAggregateInput | No |
| _max | system_menuMaxOrderByAggregateInput | No |
| _min | system_menuMinOrderByAggregateInput | No |
| _sum | system_menuSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | system_relevanceWhereInput | system_relevanceWhereInput[] | No |
| OR | system_relevanceWhereInput[] | No |
| NOT | system_relevanceWhereInput | system_relevanceWhereInput[] | No |
| id | StringFilter | String | No |
| memo | StringNullableFilter | String | Null | Yes |
| type | StringFilter | String | No |
| first_id | StringFilter | String | No |
| second_id | StringFilter | String | No |
| third_id | StringNullableFilter | String | Null | Yes |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| memo | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| first_id | SortOrder | No |
| second_id | SortOrder | No |
| third_id | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | system_relevanceWhereInput | system_relevanceWhereInput[] | No |
| OR | system_relevanceWhereInput[] | No |
| NOT | system_relevanceWhereInput | system_relevanceWhereInput[] | No |
| memo | StringNullableFilter | String | Null | Yes |
| type | StringFilter | String | No |
| first_id | StringFilter | String | No |
| second_id | StringFilter | String | No |
| third_id | StringNullableFilter | String | Null | Yes |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| memo | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| first_id | SortOrder | No |
| second_id | SortOrder | No |
| third_id | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | system_relevanceCountOrderByAggregateInput | No |
| _max | system_relevanceMaxOrderByAggregateInput | No |
| _min | system_relevanceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | system_relevanceScalarWhereWithAggregatesInput | system_relevanceScalarWhereWithAggregatesInput[] | No |
| OR | system_relevanceScalarWhereWithAggregatesInput[] | No |
| NOT | system_relevanceScalarWhereWithAggregatesInput | system_relevanceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| memo | StringNullableWithAggregatesFilter | String | Null | Yes |
| type | StringWithAggregatesFilter | String | No |
| first_id | StringWithAggregatesFilter | String | No |
| second_id | StringWithAggregatesFilter | String | No |
| third_id | StringNullableWithAggregatesFilter | String | Null | Yes |
| enable | BoolWithAggregatesFilter | Boolean | No |
| created_user | StringWithAggregatesFilter | String | No |
| created_date | DateTimeWithAggregatesFilter | DateTime | No |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | system_roleWhereInput | system_roleWhereInput[] | No |
| OR | system_roleWhereInput[] | No |
| NOT | system_roleWhereInput | system_roleWhereInput[] | No |
| id | StringFilter | String | No |
| code | StringFilter | String | No |
| name | StringFilter | String | No |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| name | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| AND | system_roleWhereInput | system_roleWhereInput[] | No |
| OR | system_roleWhereInput[] | No |
| NOT | system_roleWhereInput | system_roleWhereInput[] | No |
| name | StringFilter | String | No |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| name | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | system_roleCountOrderByAggregateInput | No |
| _max | system_roleMaxOrderByAggregateInput | No |
| _min | system_roleMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | system_roleScalarWhereWithAggregatesInput | system_roleScalarWhereWithAggregatesInput[] | No |
| OR | system_roleScalarWhereWithAggregatesInput[] | No |
| NOT | system_roleScalarWhereWithAggregatesInput | system_roleScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| code | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| enable | BoolWithAggregatesFilter | Boolean | No |
| created_user | StringWithAggregatesFilter | String | No |
| created_date | DateTimeWithAggregatesFilter | DateTime | No |
| updated_user | StringWithAggregatesFilter | String | No |
| updated_date | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | system_userWhereInput | system_userWhereInput[] | No |
| OR | system_userWhereInput[] | No |
| NOT | system_userWhereInput | system_userWhereInput[] | No |
| id | StringFilter | String | No |
| provider_id | StringFilter | String | No |
| provider | StringFilter | String | No |
| display_name | StringFilter | String | No |
| family_name | StringFilter | String | No |
| given_name | StringFilter | String | No |
| StringFilter | String | No | |
| email_verified | BoolNullableFilter | Boolean | Null | Yes |
| password | StringFilter | String | No |
| language | StringFilter | String | No |
| locale | StringNullableFilter | String | Null | Yes |
| picture | StringNullableFilter | String | Null | Yes |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| provider_id | SortOrder | No |
| provider | SortOrder | No |
| display_name | SortOrder | No |
| family_name | SortOrder | No |
| given_name | SortOrder | No |
| SortOrder | No | |
| email_verified | SortOrder | SortOrderInput | No |
| password | SortOrder | No |
| language | SortOrder | No |
| locale | SortOrder | SortOrderInput | No |
| picture | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_id | String | No |
| String | No | |
| AND | system_userWhereInput | system_userWhereInput[] | No |
| OR | system_userWhereInput[] | No |
| NOT | system_userWhereInput | system_userWhereInput[] | No |
| provider | StringFilter | String | No |
| display_name | StringFilter | String | No |
| family_name | StringFilter | String | No |
| given_name | StringFilter | String | No |
| email_verified | BoolNullableFilter | Boolean | Null | Yes |
| password | StringFilter | String | No |
| language | StringFilter | String | No |
| locale | StringNullableFilter | String | Null | Yes |
| picture | StringNullableFilter | String | Null | Yes |
| enable | BoolFilter | Boolean | No |
| created_user | StringFilter | String | No |
| created_date | DateTimeFilter | DateTime | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| provider_id | SortOrder | No |
| provider | SortOrder | No |
| display_name | SortOrder | No |
| family_name | SortOrder | No |
| given_name | SortOrder | No |
| SortOrder | No | |
| email_verified | SortOrder | SortOrderInput | No |
| password | SortOrder | No |
| language | SortOrder | No |
| locale | SortOrder | SortOrderInput | No |
| picture | SortOrder | SortOrderInput | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| _count | system_userCountOrderByAggregateInput | No |
| _max | system_userMaxOrderByAggregateInput | No |
| _min | system_userMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| id | StringFilter | String | No |
| userId | StringFilter | String | No |
| type | StringFilter | String | No |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| id_token | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | SortOrderInput | No |
| access_token | SortOrder | SortOrderInput | No |
| expires_at | SortOrder | SortOrderInput | No |
| token_type | SortOrder | SortOrderInput | No |
| scope | SortOrder | SortOrderInput | No |
| id_token | SortOrder | SortOrderInput | No |
| session_state | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_providerAccountId | AccountProviderProviderAccountIdCompoundUniqueInput | No |
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| userId | StringFilter | String | No |
| type | StringFilter | String | No |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| id_token | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | SortOrderInput | No |
| access_token | SortOrder | SortOrderInput | No |
| expires_at | SortOrder | SortOrderInput | No |
| token_type | SortOrder | SortOrderInput | No |
| scope | SortOrder | SortOrderInput | No |
| id_token | SortOrder | SortOrderInput | No |
| session_state | SortOrder | SortOrderInput | No |
| _count | AccountCountOrderByAggregateInput | No |
| _avg | AccountAvgOrderByAggregateInput | No |
| _max | AccountMaxOrderByAggregateInput | No |
| _min | AccountMinOrderByAggregateInput | No |
| _sum | AccountSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] | No |
| OR | AccountScalarWhereWithAggregatesInput[] | No |
| NOT | AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| type | StringWithAggregatesFilter | String | No |
| provider | StringWithAggregatesFilter | String | No |
| providerAccountId | StringWithAggregatesFilter | String | No |
| refresh_token | StringNullableWithAggregatesFilter | String | Null | Yes |
| access_token | StringNullableWithAggregatesFilter | String | Null | Yes |
| expires_at | IntNullableWithAggregatesFilter | Int | Null | Yes |
| token_type | StringNullableWithAggregatesFilter | String | Null | Yes |
| scope | StringNullableWithAggregatesFilter | String | Null | Yes |
| id_token | StringNullableWithAggregatesFilter | String | Null | Yes |
| session_state | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionWhereInput | SessionWhereInput[] | No |
| OR | SessionWhereInput[] | No |
| NOT | SessionWhereInput | SessionWhereInput[] | No |
| id | StringFilter | String | No |
| sessionToken | StringFilter | String | No |
| userId | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| AND | SessionWhereInput | SessionWhereInput[] | No |
| OR | SessionWhereInput[] | No |
| NOT | SessionWhereInput | SessionWhereInput[] | No |
| userId | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| _count | SessionCountOrderByAggregateInput | No |
| _max | SessionMaxOrderByAggregateInput | No |
| _min | SessionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| OR | SessionScalarWhereWithAggregatesInput[] | No |
| NOT | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| sessionToken | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| expires | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringNullableFilter | String | Null | Yes |
| StringNullableFilter | String | Null | Yes | |
| emailVerified | DateTimeNullableFilter | DateTime | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| accounts | AccountListRelationFilter | No |
| sessions | SessionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | SortOrderInput | No |
| SortOrder | SortOrderInput | No | |
| emailVerified | SortOrder | SortOrderInput | No |
| image | SortOrder | SortOrderInput | No |
| accounts | AccountOrderByRelationAggregateInput | No |
| sessions | SessionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| String | No | |
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| name | StringNullableFilter | String | Null | Yes |
| emailVerified | DateTimeNullableFilter | DateTime | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| accounts | AccountListRelationFilter | No |
| sessions | SessionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | SortOrderInput | No |
| SortOrder | SortOrderInput | No | |
| emailVerified | SortOrder | SortOrderInput | No |
| image | SortOrder | SortOrderInput | No |
| _count | UserCountOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| OR | UserScalarWhereWithAggregatesInput[] | No |
| NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringNullableWithAggregatesFilter | String | Null | Yes |
| StringNullableWithAggregatesFilter | String | Null | Yes | |
| emailVerified | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| image | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| OR | VerificationTokenWhereInput[] | No |
| NOT | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| identifier | StringFilter | String | No |
| token | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| token | String | No |
| identifier_token | VerificationTokenIdentifierTokenCompoundUniqueInput | No |
| AND | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| OR | VerificationTokenWhereInput[] | No |
| NOT | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| identifier | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| _count | VerificationTokenCountOrderByAggregateInput | No |
| _max | VerificationTokenMaxOrderByAggregateInput | No |
| _min | VerificationTokenMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationTokenScalarWhereWithAggregatesInput | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| OR | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| NOT | VerificationTokenScalarWhereWithAggregatesInput | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| identifier | StringWithAggregatesFilter | String | No |
| token | StringWithAggregatesFilter | String | No |
| expires | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| key | String | No |
| code | String | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_category_mapping | cms_category_mappingCreateNestedManyWithoutCms_categoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| key | String | No |
| code | String | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_category_mapping | cms_category_mappingUncheckedCreateNestedManyWithoutCms_categoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | BoolFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_category_mapping | cms_category_mappingUpdateManyWithoutCms_categoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | BoolFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_category_mapping | cms_category_mappingUncheckedUpdateManyWithoutCms_categoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| key | String | No |
| code | String | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | BoolFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | BoolFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_category | cms_categoryCreateNestedOneWithoutCms_category_mappingInput | No |
| cms_resource | cms_resourceCreateNestedOneWithoutCms_category_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| category_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_category | cms_categoryUpdateOneRequiredWithoutCms_category_mappingNestedInput | No |
| cms_resource | cms_resourceUpdateOneRequiredWithoutCms_category_mappingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| category_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| category_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| category_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_id | BigInt | No |
| code | String | No |
| handle | String | No |
| title | NullableJsonNullValueInput | Json | No |
| image | NullableJsonNullValueInput | Json | No |
| description | NullableJsonNullValueInput | Json | No |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| seo_info | NullableJsonNullValueInput | Json | No |
| territory | String | No |
| default_territory | String | No |
| created_date | DateTime | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_id | BigInt | No |
| code | String | No |
| handle | String | No |
| title | NullableJsonNullValueInput | Json | No |
| image | NullableJsonNullValueInput | Json | No |
| description | NullableJsonNullValueInput | Json | No |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| seo_info | NullableJsonNullValueInput | Json | No |
| territory | String | No |
| default_territory | String | No |
| created_date | DateTime | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_id | BigInt | No |
| code | String | No |
| handle | String | No |
| title | NullableJsonNullValueInput | Json | No |
| image | NullableJsonNullValueInput | Json | No |
| description | NullableJsonNullValueInput | Json | No |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| seo_info | NullableJsonNullValueInput | Json | No |
| territory | String | No |
| default_territory | String | No |
| created_date | DateTime | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_curation_mapping | cms_curation_mappingCreateNestedManyWithoutCms_curationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_curation_mapping | cms_curation_mappingUncheckedCreateNestedManyWithoutCms_curationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| default_territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | StringFieldUpdateOperationsInput | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| cms_curation_mapping | cms_curation_mappingUpdateManyWithoutCms_curationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| default_territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | StringFieldUpdateOperationsInput | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| cms_curation_mapping | cms_curation_mappingUncheckedUpdateManyWithoutCms_curationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| default_territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | StringFieldUpdateOperationsInput | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| default_territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | StringFieldUpdateOperationsInput | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| edited | Boolean | Null | Yes |
| sequence | Int | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_curation | cms_curationCreateNestedOneWithoutCms_curation_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| edited | Boolean | Null | Yes |
| sequence | Int | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| edited | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_curation | cms_curationUpdateOneRequiredWithoutCms_curation_mappingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| edited | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| edited | Boolean | Null | Yes |
| sequence | Int | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| edited | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| edited | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| curation_id | BigInt | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | Null | Yes |
| territory | String | Null | Yes |
| description | String | No |
| status | String | No |
| published_date | DateTime | Null | Yes |
| synchronized | Boolean | No |
| enabled | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_curation_scheduling_item | cms_curation_scheduling_itemCreateNestedManyWithoutCms_curation_schedulingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| curation_id | BigInt | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | Null | Yes |
| territory | String | Null | Yes |
| description | String | No |
| status | String | No |
| published_date | DateTime | Null | Yes |
| synchronized | Boolean | No |
| enabled | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_curation_scheduling_item | cms_curation_scheduling_itemUncheckedCreateNestedManyWithoutCms_curation_schedulingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | StringFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| synchronized | Boolean | BoolFieldUpdateOperationsInput | No |
| enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_curation_scheduling_item | cms_curation_scheduling_itemUpdateManyWithoutCms_curation_schedulingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | StringFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| synchronized | Boolean | BoolFieldUpdateOperationsInput | No |
| enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_curation_scheduling_item | cms_curation_scheduling_itemUncheckedUpdateManyWithoutCms_curation_schedulingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| curation_id | BigInt | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | Null | Yes |
| territory | String | Null | Yes |
| description | String | No |
| status | String | No |
| published_date | DateTime | Null | Yes |
| synchronized | Boolean | No |
| enabled | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | StringFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| synchronized | Boolean | BoolFieldUpdateOperationsInput | No |
| enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | StringFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| synchronized | Boolean | BoolFieldUpdateOperationsInput | No |
| enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_curation_scheduling | cms_curation_schedulingCreateNestedOneWithoutCms_curation_scheduling_itemInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parent_id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_curation_scheduling | cms_curation_schedulingUpdateOneRequiredWithoutCms_curation_scheduling_itemNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parent_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parent_id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parent_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| title | String | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingCreateNestedManyWithoutCms_hash_tagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| title | String | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_hash_tagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingUpdateManyWithoutCms_hash_tagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_hash_tagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| title | String | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_hash_tag | cms_hash_tagCreateNestedOneWithoutCms_hash_tag_mappingInput | No |
| cms_resource | cms_resourceCreateNestedOneWithoutCms_hash_tag_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| hash_tag_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_hash_tag | cms_hash_tagUpdateOneRequiredWithoutCms_hash_tag_mappingNestedInput | No |
| cms_resource | cms_resourceUpdateOneRequiredWithoutCms_hash_tag_mappingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| hash_tag_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| hash_tag_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| hash_tag_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| mapping_type | String | No |
| detail_mapping_id | String | No |
| label_info_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| mapping_type | String | No |
| detail_mapping_id | String | No |
| label_info_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| mapping_type | String | StringFieldUpdateOperationsInput | No |
| detail_mapping_id | String | StringFieldUpdateOperationsInput | No |
| label_info_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| mapping_type | String | StringFieldUpdateOperationsInput | No |
| detail_mapping_id | String | StringFieldUpdateOperationsInput | No |
| label_info_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| mapping_type | String | No |
| detail_mapping_id | String | No |
| label_info_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| mapping_type | String | StringFieldUpdateOperationsInput | No |
| detail_mapping_id | String | StringFieldUpdateOperationsInput | No |
| label_info_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| mapping_type | String | StringFieldUpdateOperationsInput | No |
| detail_mapping_id | String | StringFieldUpdateOperationsInput | No |
| label_info_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| show_start_date | DateTime | Null | Yes |
| show_end_date | DateTime | Null | Yes |
| play_start_date | DateTime | Null | Yes |
| play_end_date | DateTime | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_resource | cms_resourceCreateNestedOneWithoutCms_published_settingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| territory | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| show_start_date | DateTime | Null | Yes |
| show_end_date | DateTime | Null | Yes |
| play_start_date | DateTime | Null | Yes |
| play_end_date | DateTime | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| unpublished_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| show_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| show_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_resource | cms_resourceUpdateOneRequiredWithoutCms_published_settingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| unpublished_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| show_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| show_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| territory | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| show_start_date | DateTime | Null | Yes |
| show_end_date | DateTime | Null | Yes |
| play_start_date | DateTime | Null | Yes |
| play_end_date | DateTime | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| unpublished_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| show_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| show_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| unpublished_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| show_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| show_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| partner_resource_id | String | Null | Yes |
| channel_code | String | Null | Yes |
| execute_process | String | No |
| execute_status | String | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | No |
| poster_type | String | Null | Yes |
| video_import | Int | No |
| oa_task_job_id | BigInt | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_resource | cms_resourceCreateNestedOneWithoutCms_resource_import_logInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| partner_resource_id | String | Null | Yes |
| channel_code | String | Null | Yes |
| resource_id | BigInt | Null | Yes |
| execute_process | String | No |
| execute_status | String | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | No |
| poster_type | String | Null | Yes |
| video_import | Int | No |
| oa_task_job_id | BigInt | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| partner_resource_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| channel_code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| execute_process | String | StringFieldUpdateOperationsInput | No |
| execute_status | String | StringFieldUpdateOperationsInput | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | IntFieldUpdateOperationsInput | No |
| poster_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| video_import | Int | IntFieldUpdateOperationsInput | No |
| oa_task_job_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_resource | cms_resourceUpdateOneWithoutCms_resource_import_logNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| partner_resource_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| channel_code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| resource_id | BigInt | NullableBigIntFieldUpdateOperationsInput | Null | Yes |
| execute_process | String | StringFieldUpdateOperationsInput | No |
| execute_status | String | StringFieldUpdateOperationsInput | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | IntFieldUpdateOperationsInput | No |
| poster_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| video_import | Int | IntFieldUpdateOperationsInput | No |
| oa_task_job_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| partner_resource_id | String | Null | Yes |
| channel_code | String | Null | Yes |
| resource_id | BigInt | Null | Yes |
| execute_process | String | No |
| execute_status | String | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | No |
| poster_type | String | Null | Yes |
| video_import | Int | No |
| oa_task_job_id | BigInt | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| partner_resource_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| channel_code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| execute_process | String | StringFieldUpdateOperationsInput | No |
| execute_status | String | StringFieldUpdateOperationsInput | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | IntFieldUpdateOperationsInput | No |
| poster_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| video_import | Int | IntFieldUpdateOperationsInput | No |
| oa_task_job_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| partner_resource_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| channel_code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| resource_id | BigInt | NullableBigIntFieldUpdateOperationsInput | Null | Yes |
| execute_process | String | StringFieldUpdateOperationsInput | No |
| execute_status | String | StringFieldUpdateOperationsInput | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | IntFieldUpdateOperationsInput | No |
| poster_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| video_import | Int | IntFieldUpdateOperationsInput | No |
| oa_task_job_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | No |
| master_code | String | Null | Yes |
| master_key | String | Null | Yes |
| master_type | String | Null | Yes |
| video_id | String | Null | Yes |
| duration | String | Null | Yes |
| show_direction | String | Null | Yes |
| sub_statuses | NullableJsonNullValueInput | Json | No |
| detail | NullableJsonNullValueInput | Json | No |
| description | NullableJsonNullValueInput | Json | No |
| player_info | NullableJsonNullValueInput | Json | No |
| posters | NullableJsonNullValueInput | Json | No |
| category_info | NullableJsonNullValueInput | Json | No |
| label_info | NullableJsonNullValueInput | Json | No |
| hash_tag_info | NullableJsonNullValueInput | Json | No |
| seo_info | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| artwork_status | String | Null | Yes |
| transcoding_status | String | Null | Yes |
| cms_resource | cms_resourceCreateNestedOneWithoutCms_resource_parameterInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| master_code | String | Null | Yes |
| master_key | String | Null | Yes |
| master_type | String | Null | Yes |
| video_id | String | Null | Yes |
| duration | String | Null | Yes |
| show_direction | String | Null | Yes |
| sub_statuses | NullableJsonNullValueInput | Json | No |
| detail | NullableJsonNullValueInput | Json | No |
| description | NullableJsonNullValueInput | Json | No |
| player_info | NullableJsonNullValueInput | Json | No |
| posters | NullableJsonNullValueInput | Json | No |
| category_info | NullableJsonNullValueInput | Json | No |
| label_info | NullableJsonNullValueInput | Json | No |
| hash_tag_info | NullableJsonNullValueInput | Json | No |
| seo_info | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| artwork_status | String | Null | Yes |
| transcoding_status | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| master_code | String | Null | Yes |
| master_key | String | Null | Yes |
| master_type | String | Null | Yes |
| video_id | String | Null | Yes |
| duration | String | Null | Yes |
| show_direction | String | Null | Yes |
| sub_statuses | NullableJsonNullValueInput | Json | No |
| detail | NullableJsonNullValueInput | Json | No |
| description | NullableJsonNullValueInput | Json | No |
| player_info | NullableJsonNullValueInput | Json | No |
| posters | NullableJsonNullValueInput | Json | No |
| category_info | NullableJsonNullValueInput | Json | No |
| label_info | NullableJsonNullValueInput | Json | No |
| hash_tag_info | NullableJsonNullValueInput | Json | No |
| seo_info | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| artwork_status | String | Null | Yes |
| transcoding_status | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| territory | String | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_resource | cms_resourceCreateNestedOneWithoutCms_resource_statisticsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | StringFieldUpdateOperationsInput | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_resource | cms_resourceUpdateOneRequiredWithoutCms_resource_statisticsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | StringFieldUpdateOperationsInput | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| function_name | String | No |
| mapping_id | String | No |
| sub_function_name | String | Null | Yes |
| sub_mapping_id | String | Null | Yes |
| comment | String | No |
| action | String | No |
| before | NullableJsonNullValueInput | Json | No |
| after | NullableJsonNullValueInput | Json | No |
| jira_no | String | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| function_name | String | No |
| mapping_id | String | No |
| sub_function_name | String | Null | Yes |
| sub_mapping_id | String | Null | Yes |
| comment | String | No |
| action | String | No |
| before | NullableJsonNullValueInput | Json | No |
| after | NullableJsonNullValueInput | Json | No |
| jira_no | String | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| function_name | String | StringFieldUpdateOperationsInput | No |
| mapping_id | String | StringFieldUpdateOperationsInput | No |
| sub_function_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sub_mapping_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| comment | String | StringFieldUpdateOperationsInput | No |
| action | String | StringFieldUpdateOperationsInput | No |
| before | NullableJsonNullValueInput | Json | No |
| after | NullableJsonNullValueInput | Json | No |
| jira_no | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| function_name | String | StringFieldUpdateOperationsInput | No |
| mapping_id | String | StringFieldUpdateOperationsInput | No |
| sub_function_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sub_mapping_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| comment | String | StringFieldUpdateOperationsInput | No |
| action | String | StringFieldUpdateOperationsInput | No |
| before | NullableJsonNullValueInput | Json | No |
| after | NullableJsonNullValueInput | Json | No |
| jira_no | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| function_name | String | No |
| mapping_id | String | No |
| sub_function_name | String | Null | Yes |
| sub_mapping_id | String | Null | Yes |
| comment | String | No |
| action | String | No |
| before | NullableJsonNullValueInput | Json | No |
| after | NullableJsonNullValueInput | Json | No |
| jira_no | String | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| function_name | String | StringFieldUpdateOperationsInput | No |
| mapping_id | String | StringFieldUpdateOperationsInput | No |
| sub_function_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sub_mapping_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| comment | String | StringFieldUpdateOperationsInput | No |
| action | String | StringFieldUpdateOperationsInput | No |
| before | NullableJsonNullValueInput | Json | No |
| after | NullableJsonNullValueInput | Json | No |
| jira_no | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| function_name | String | StringFieldUpdateOperationsInput | No |
| mapping_id | String | StringFieldUpdateOperationsInput | No |
| sub_function_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sub_mapping_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| comment | String | StringFieldUpdateOperationsInput | No |
| action | String | StringFieldUpdateOperationsInput | No |
| before | NullableJsonNullValueInput | Json | No |
| after | NullableJsonNullValueInput | Json | No |
| jira_no | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_key | String | No |
| code | String | Null | Yes |
| company_name | String | Null | Yes |
| category | String | Null | Yes |
| contact_name | String | Null | Yes |
| contact_phone | String | Null | Yes |
| contact_email | String | Null | Yes |
| contact_mobile | String | Null | Yes |
| s3_bucket_name | String | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_key | String | No |
| code | String | Null | Yes |
| company_name | String | Null | Yes |
| category | String | Null | Yes |
| contact_name | String | Null | Yes |
| contact_phone | String | Null | Yes |
| contact_email | String | Null | Yes |
| contact_mobile | String | Null | Yes |
| s3_bucket_name | String | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| licensor_key | String | StringFieldUpdateOperationsInput | No |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| company_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| category | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_email | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_mobile | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| s3_bucket_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| licensor_key | String | StringFieldUpdateOperationsInput | No |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| company_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| category | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_email | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_mobile | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| s3_bucket_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_key | String | No |
| code | String | Null | Yes |
| company_name | String | Null | Yes |
| category | String | Null | Yes |
| contact_name | String | Null | Yes |
| contact_phone | String | Null | Yes |
| contact_email | String | Null | Yes |
| contact_mobile | String | Null | Yes |
| s3_bucket_name | String | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| licensor_key | String | StringFieldUpdateOperationsInput | No |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| company_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| category | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_email | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_mobile | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| s3_bucket_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| licensor_key | String | StringFieldUpdateOperationsInput | No |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| company_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| category | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_phone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_email | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| contact_mobile | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| s3_bucket_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | No |
| territory | String | No |
| code_type_name | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | Null | Yes |
| memo | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_type_name_local | String | Null | Yes |
| code_type_name_eng | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | No |
| territory | String | No |
| code_type_name | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | Null | Yes |
| memo | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_type_name_local | String | Null | Yes |
| code_type_name_eng | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| code_type_name | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | IntFieldUpdateOperationsInput | No |
| used_flag | Boolean | BoolFieldUpdateOperationsInput | No |
| up_level_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| code_type_name_local | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code_type_name_eng | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| code_type_name | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | IntFieldUpdateOperationsInput | No |
| used_flag | Boolean | BoolFieldUpdateOperationsInput | No |
| up_level_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| code_type_name_local | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code_type_name_eng | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | No |
| territory | String | No |
| code_type_name | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | Null | Yes |
| memo | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_type_name_local | String | Null | Yes |
| code_type_name_eng | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| code_type_name | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | IntFieldUpdateOperationsInput | No |
| used_flag | Boolean | BoolFieldUpdateOperationsInput | No |
| up_level_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| code_type_name_local | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code_type_name_eng | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| code_type_name | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | IntFieldUpdateOperationsInput | No |
| used_flag | Boolean | BoolFieldUpdateOperationsInput | No |
| up_level_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| code_type_name_local | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code_type_name_eng | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| code_type | String | No |
| territory | String | No |
| code | String | No |
| code_group | String | Null | Yes |
| value_type | String | Null | Yes |
| code_name | NullableJsonNullValueInput | Json | No |
| code_parameter | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | Null | Yes |
| memo | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_name_local | String | Null | Yes |
| code_name_eng | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| code_type | String | No |
| territory | String | No |
| code | String | No |
| code_group | String | Null | Yes |
| value_type | String | Null | Yes |
| code_name | NullableJsonNullValueInput | Json | No |
| code_parameter | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | Null | Yes |
| memo | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_name_local | String | Null | Yes |
| code_name_eng | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| code_type | String | No |
| territory | String | No |
| code | String | No |
| code_group | String | Null | Yes |
| value_type | String | Null | Yes |
| code_name | NullableJsonNullValueInput | Json | No |
| code_parameter | NullableJsonNullValueInput | Json | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | Null | Yes |
| memo | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_name_local | String | Null | Yes |
| code_name_eng | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| task_label | String | No |
| job_name | String | No |
| task_name | String | No |
| task_target | String | No |
| execution_time | DateTime | Null | Yes |
| execution_script | String | Null | Yes |
| execution_log | NullableJsonNullValueInput | Json | No |
| executed | Int | No |
| exec_start_date | DateTime | Null | Yes |
| exec_end_date | DateTime | Null | Yes |
| enable | Int | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| task_label | String | No |
| job_name | String | No |
| task_name | String | No |
| task_target | String | No |
| execution_time | DateTime | Null | Yes |
| execution_script | String | Null | Yes |
| execution_log | NullableJsonNullValueInput | Json | No |
| executed | Int | No |
| exec_start_date | DateTime | Null | Yes |
| exec_end_date | DateTime | Null | Yes |
| enable | Int | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| task_label | String | StringFieldUpdateOperationsInput | No |
| job_name | String | StringFieldUpdateOperationsInput | No |
| task_name | String | StringFieldUpdateOperationsInput | No |
| task_target | String | StringFieldUpdateOperationsInput | No |
| execution_time | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| execution_script | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| execution_log | NullableJsonNullValueInput | Json | No |
| executed | Int | IntFieldUpdateOperationsInput | No |
| exec_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| exec_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| enable | Int | IntFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| task_label | String | StringFieldUpdateOperationsInput | No |
| job_name | String | StringFieldUpdateOperationsInput | No |
| task_name | String | StringFieldUpdateOperationsInput | No |
| task_target | String | StringFieldUpdateOperationsInput | No |
| execution_time | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| execution_script | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| execution_log | NullableJsonNullValueInput | Json | No |
| executed | Int | IntFieldUpdateOperationsInput | No |
| exec_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| exec_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| enable | Int | IntFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| task_label | String | No |
| job_name | String | No |
| task_name | String | No |
| task_target | String | No |
| execution_time | DateTime | Null | Yes |
| execution_script | String | Null | Yes |
| execution_log | NullableJsonNullValueInput | Json | No |
| executed | Int | No |
| exec_start_date | DateTime | Null | Yes |
| exec_end_date | DateTime | Null | Yes |
| enable | Int | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| task_label | String | StringFieldUpdateOperationsInput | No |
| job_name | String | StringFieldUpdateOperationsInput | No |
| task_name | String | StringFieldUpdateOperationsInput | No |
| task_target | String | StringFieldUpdateOperationsInput | No |
| execution_time | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| execution_script | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| execution_log | NullableJsonNullValueInput | Json | No |
| executed | Int | IntFieldUpdateOperationsInput | No |
| exec_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| exec_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| enable | Int | IntFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| task_label | String | StringFieldUpdateOperationsInput | No |
| job_name | String | StringFieldUpdateOperationsInput | No |
| task_name | String | StringFieldUpdateOperationsInput | No |
| task_target | String | StringFieldUpdateOperationsInput | No |
| execution_time | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| execution_script | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| execution_log | NullableJsonNullValueInput | Json | No |
| executed | Int | IntFieldUpdateOperationsInput | No |
| exec_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| exec_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| enable | Int | IntFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| title | String | Null | Yes |
| default_territory | String | No |
| language | String | No |
| default_language | String | No |
| timezone | String | Null | Yes |
| priority | Int | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| title | String | Null | Yes |
| default_territory | String | No |
| language | String | No |
| default_language | String | No |
| timezone | String | Null | Yes |
| priority | Int | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| default_territory | String | StringFieldUpdateOperationsInput | No |
| language | String | StringFieldUpdateOperationsInput | No |
| default_language | String | StringFieldUpdateOperationsInput | No |
| timezone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| default_territory | String | StringFieldUpdateOperationsInput | No |
| language | String | StringFieldUpdateOperationsInput | No |
| default_language | String | StringFieldUpdateOperationsInput | No |
| timezone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| title | String | Null | Yes |
| default_territory | String | No |
| language | String | No |
| default_language | String | No |
| timezone | String | Null | Yes |
| priority | Int | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| default_territory | String | StringFieldUpdateOperationsInput | No |
| language | String | StringFieldUpdateOperationsInput | No |
| default_language | String | StringFieldUpdateOperationsInput | No |
| timezone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| default_territory | String | StringFieldUpdateOperationsInput | No |
| language | String | StringFieldUpdateOperationsInput | No |
| default_language | String | StringFieldUpdateOperationsInput | No |
| timezone | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| menu_id | String | No |
| name | String | No |
| show_name | String | No |
| icon | String | Null | Yes |
| type | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| menu_id | String | No |
| name | String | No |
| show_name | String | No |
| icon | String | Null | Yes |
| type | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| menu_id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| show_name | String | StringFieldUpdateOperationsInput | No |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| menu_id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| show_name | String | StringFieldUpdateOperationsInput | No |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| menu_id | String | No |
| name | String | No |
| show_name | String | No |
| icon | String | Null | Yes |
| type | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| menu_id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| show_name | String | StringFieldUpdateOperationsInput | No |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| menu_id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| show_name | String | StringFieldUpdateOperationsInput | No |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cascade_id | String | Null | Yes |
| name | String | No |
| pathname | String | No |
| icon | String | Null | Yes |
| show_in_menu | Boolean | No |
| is_web_page | Boolean | No |
| is_need_login | Boolean | No |
| parent_id | String | Null | Yes |
| table_memo | String | Null | Yes |
| sort | Int | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cascade_id | String | Null | Yes |
| name | String | No |
| pathname | String | No |
| icon | String | Null | Yes |
| show_in_menu | Boolean | No |
| is_web_page | Boolean | No |
| is_need_login | Boolean | No |
| parent_id | String | Null | Yes |
| table_memo | String | Null | Yes |
| sort | Int | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cascade_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| pathname | String | StringFieldUpdateOperationsInput | No |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| show_in_menu | Boolean | BoolFieldUpdateOperationsInput | No |
| is_web_page | Boolean | BoolFieldUpdateOperationsInput | No |
| is_need_login | Boolean | BoolFieldUpdateOperationsInput | No |
| parent_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| table_memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sort | Int | IntFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cascade_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| pathname | String | StringFieldUpdateOperationsInput | No |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| show_in_menu | Boolean | BoolFieldUpdateOperationsInput | No |
| is_web_page | Boolean | BoolFieldUpdateOperationsInput | No |
| is_need_login | Boolean | BoolFieldUpdateOperationsInput | No |
| parent_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| table_memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sort | Int | IntFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cascade_id | String | Null | Yes |
| name | String | No |
| pathname | String | No |
| icon | String | Null | Yes |
| show_in_menu | Boolean | No |
| is_web_page | Boolean | No |
| is_need_login | Boolean | No |
| parent_id | String | Null | Yes |
| table_memo | String | Null | Yes |
| sort | Int | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cascade_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| pathname | String | StringFieldUpdateOperationsInput | No |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| show_in_menu | Boolean | BoolFieldUpdateOperationsInput | No |
| is_web_page | Boolean | BoolFieldUpdateOperationsInput | No |
| is_need_login | Boolean | BoolFieldUpdateOperationsInput | No |
| parent_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| table_memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sort | Int | IntFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| cascade_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| pathname | String | StringFieldUpdateOperationsInput | No |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| show_in_menu | Boolean | BoolFieldUpdateOperationsInput | No |
| is_web_page | Boolean | BoolFieldUpdateOperationsInput | No |
| is_need_login | Boolean | BoolFieldUpdateOperationsInput | No |
| parent_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| table_memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sort | Int | IntFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| memo | String | Null | Yes |
| type | String | No |
| first_id | String | No |
| second_id | String | No |
| third_id | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| memo | String | Null | Yes |
| type | String | No |
| first_id | String | No |
| second_id | String | No |
| third_id | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| first_id | String | StringFieldUpdateOperationsInput | No |
| second_id | String | StringFieldUpdateOperationsInput | No |
| third_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| first_id | String | StringFieldUpdateOperationsInput | No |
| second_id | String | StringFieldUpdateOperationsInput | No |
| third_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| memo | String | Null | Yes |
| type | String | No |
| first_id | String | No |
| second_id | String | No |
| third_id | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| first_id | String | StringFieldUpdateOperationsInput | No |
| second_id | String | StringFieldUpdateOperationsInput | No |
| third_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| memo | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| first_id | String | StringFieldUpdateOperationsInput | No |
| second_id | String | StringFieldUpdateOperationsInput | No |
| third_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| name | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| name | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| name | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| enable | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_id | String | No |
| provider | String | No |
| display_name | String | No |
| family_name | String | No |
| given_name | String | No |
| String | No | |
| email_verified | Boolean | Null | Yes |
| password | String | No |
| language | String | No |
| locale | String | Null | Yes |
| picture | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_id | String | No |
| provider | String | No |
| display_name | String | No |
| family_name | String | No |
| given_name | String | No |
| String | No | |
| email_verified | Boolean | Null | Yes |
| password | String | No |
| language | String | No |
| locale | String | Null | Yes |
| picture | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_id | String | No |
| provider | String | No |
| display_name | String | No |
| family_name | String | No |
| given_name | String | No |
| String | No | |
| email_verified | Boolean | Null | Yes |
| password | String | No |
| language | String | No |
| locale | String | Null | Yes |
| picture | String | Null | Yes |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| user | UserCreateNestedOneWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneRequiredWithoutAccountsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| user | UserCreateNestedOneWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutSessionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| image | String | Null | Yes |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| image | String | Null | Yes |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accounts | AccountUpdateManyWithoutUserNestedInput | No |
| sessions | SessionUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accounts | AccountUncheckedUpdateManyWithoutUserNestedInput | No |
| sessions | SessionUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| image | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | No |
| in | BigInt[] | No |
| notIn | BigInt[] | No |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | No |
| notIn | String | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | cms_category_mappingWhereInput | No |
| some | cms_category_mappingWhereInput | No |
| none | cms_category_mappingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | No |
| key | String | No |
| code | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| title | SortOrder | No |
| on_used | SortOrder | No |
| sequence | SortOrder | No |
| statistics | SortOrder | No |
| parameter_values | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| on_used | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| on_used | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | No |
| in | BigInt[] | No |
| notIn | BigInt[] | No |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedBigIntFilter | No |
| _min | NestedBigIntFilter | No |
| _max | NestedBigIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | No |
| notIn | String | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| _count | NestedIntNullableFilter | No |
| _min | NestedJsonNullableFilter | No |
| _max | NestedJsonNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | cms_categoryWhereInput | No |
| isNot | cms_categoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | cms_resourceWhereInput | No |
| isNot | cms_resourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| category_id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| category_id | SortOrder | No |
| parameter_values | SortOrder | No |
| sequence | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| category_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| category_id | SortOrder | No |
| sequence | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| category_id | SortOrder | No |
| sequence | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| category_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_id | SortOrder | No |
| code | SortOrder | No |
| handle | SortOrder | No |
| title | SortOrder | No |
| image | SortOrder | No |
| description | SortOrder | No |
| statistics | SortOrder | No |
| parameter_values | SortOrder | No |
| seo_info | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_id | SortOrder | No |
| code | SortOrder | No |
| handle | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_id | SortOrder | No |
| code | SortOrder | No |
| handle | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | cms_curation_mappingWhereInput | No |
| some | cms_curation_mappingWhereInput | No |
| none | cms_curation_mappingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| title | SortOrder | No |
| company_id | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| status | SortOrder | No |
| detail_parameter | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| company_id | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| status | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| company_id | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| status | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | cms_curationWhereInput | No |
| isNot | cms_curationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| edited | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| edited | SortOrder | No |
| sequence | SortOrder | No |
| parameter_values | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| edited | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| edited | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | cms_curation_scheduling_itemWhereInput | No |
| some | cms_curation_scheduling_itemWhereInput | No |
| none | cms_curation_scheduling_itemWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| key | String | No |
| territory | String | No |
| published_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| curation_id | SortOrder | No |
| title | SortOrder | No |
| key | SortOrder | No |
| territory | SortOrder | No |
| description | SortOrder | No |
| status | SortOrder | No |
| published_date | SortOrder | No |
| synchronized | SortOrder | No |
| enabled | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| curation_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| curation_id | SortOrder | No |
| key | SortOrder | No |
| territory | SortOrder | No |
| description | SortOrder | No |
| status | SortOrder | No |
| published_date | SortOrder | No |
| synchronized | SortOrder | No |
| enabled | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| curation_id | SortOrder | No |
| key | SortOrder | No |
| territory | SortOrder | No |
| description | SortOrder | No |
| status | SortOrder | No |
| published_date | SortOrder | No |
| synchronized | SortOrder | No |
| enabled | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| curation_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | cms_curation_schedulingWhereInput | No |
| isNot | cms_curation_schedulingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| parent_id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| parent_id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| parameter_values | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| parent_id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| parent_id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| parent_id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| parent_id | SortOrder | No |
| resource_id | SortOrder | No |
| curation_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | cms_hash_tag_mappingWhereInput | No |
| some | cms_hash_tag_mappingWhereInput | No |
| none | cms_hash_tag_mappingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| sequence | SortOrder | No |
| statistics | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | cms_hash_tagWhereInput | No |
| isNot | cms_hash_tagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| hash_tag_id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| hash_tag_id | SortOrder | No |
| parameter_values | SortOrder | No |
| sequence | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| hash_tag_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| hash_tag_id | SortOrder | No |
| sequence | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| hash_tag_id | SortOrder | No |
| sequence | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| hash_tag_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| title | SortOrder | No |
| sequence | SortOrder | No |
| statistics | SortOrder | No |
| parameter_values | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| sequence | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| detail_mapping_id | String | No |
| label_info_id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| mapping_type | SortOrder | No |
| detail_mapping_id | SortOrder | No |
| label_info_id | SortOrder | No |
| parameter_values | SortOrder | No |
| sequence | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| label_info_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| mapping_type | SortOrder | No |
| detail_mapping_id | SortOrder | No |
| label_info_id | SortOrder | No |
| sequence | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| mapping_type | SortOrder | No |
| detail_mapping_id | SortOrder | No |
| label_info_id | SortOrder | No |
| sequence | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| label_info_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| published_date | SortOrder | No |
| unpublished_date | SortOrder | No |
| show_start_date | SortOrder | No |
| show_end_date | SortOrder | No |
| play_start_date | SortOrder | No |
| play_end_date | SortOrder | No |
| parameter_values | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| published_date | SortOrder | No |
| unpublished_date | SortOrder | No |
| show_start_date | SortOrder | No |
| show_end_date | SortOrder | No |
| play_start_date | SortOrder | No |
| play_end_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| published_date | SortOrder | No |
| unpublished_date | SortOrder | No |
| show_start_date | SortOrder | No |
| show_end_date | SortOrder | No |
| play_start_date | SortOrder | No |
| play_end_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | cms_published_settingWhereInput | No |
| some | cms_published_settingWhereInput | No |
| none | cms_published_settingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | cms_resource_import_logWhereInput | No |
| some | cms_resource_import_logWhereInput | No |
| none | cms_resource_import_logWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | cms_resource_parameterWhereInput | No |
| some | cms_resource_parameterWhereInput | No |
| none | cms_resource_parameterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | cms_resource_statisticsWhereInput | No |
| some | cms_resource_statisticsWhereInput | No |
| none | cms_resource_statisticsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| partner_resource_id | String | No |
| channel_code | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| type | SortOrder | No |
| title | SortOrder | No |
| channel_code | SortOrder | No |
| licensor_id | SortOrder | No |
| company_id | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| status | SortOrder | No |
| partner_resource_id | SortOrder | No |
| published_date | SortOrder | No |
| unpublished_date | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_id | SortOrder | No |
| enable | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| type | SortOrder | No |
| channel_code | SortOrder | No |
| licensor_id | SortOrder | No |
| company_id | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| status | SortOrder | No |
| partner_resource_id | SortOrder | No |
| published_date | SortOrder | No |
| unpublished_date | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| code | SortOrder | No |
| type | SortOrder | No |
| channel_code | SortOrder | No |
| licensor_id | SortOrder | No |
| company_id | SortOrder | No |
| territory | SortOrder | No |
| default_territory | SortOrder | No |
| status | SortOrder | No |
| partner_resource_id | SortOrder | No |
| published_date | SortOrder | No |
| unpublished_date | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| title_en | SortOrder | No |
| title_zhtw | SortOrder | No |
| title_inid | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_id | SortOrder | No |
| enable | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | Null | Yes |
| in | BigInt[] | Null | Yes |
| notIn | BigInt[] | Null | Yes |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | cms_resourceWhereInput | Null | Yes |
| isNot | cms_resourceWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| partner_resource_id | SortOrder | No |
| channel_code | SortOrder | No |
| resource_id | SortOrder | No |
| execute_process | SortOrder | No |
| execute_status | SortOrder | No |
| imp_result | SortOrder | No |
| poster_import | SortOrder | No |
| poster_type | SortOrder | No |
| video_import | SortOrder | No |
| oa_task_job_id | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| poster_import | SortOrder | No |
| video_import | SortOrder | No |
| oa_task_job_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| partner_resource_id | SortOrder | No |
| channel_code | SortOrder | No |
| resource_id | SortOrder | No |
| execute_process | SortOrder | No |
| execute_status | SortOrder | No |
| poster_import | SortOrder | No |
| poster_type | SortOrder | No |
| video_import | SortOrder | No |
| oa_task_job_id | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| partner_resource_id | SortOrder | No |
| channel_code | SortOrder | No |
| resource_id | SortOrder | No |
| execute_process | SortOrder | No |
| execute_status | SortOrder | No |
| poster_import | SortOrder | No |
| poster_type | SortOrder | No |
| video_import | SortOrder | No |
| oa_task_job_id | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resource_id | SortOrder | No |
| poster_import | SortOrder | No |
| video_import | SortOrder | No |
| oa_task_job_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | Null | Yes |
| in | BigInt[] | Null | Yes |
| notIn | BigInt[] | Null | Yes |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedBigIntNullableFilter | No |
| _min | NestedBigIntNullableFilter | No |
| _max | NestedBigIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| master_code | SortOrder | No |
| master_key | SortOrder | No |
| master_type | SortOrder | No |
| video_id | SortOrder | No |
| duration | SortOrder | No |
| show_direction | SortOrder | No |
| sub_statuses | SortOrder | No |
| detail | SortOrder | No |
| description | SortOrder | No |
| player_info | SortOrder | No |
| posters | SortOrder | No |
| category_info | SortOrder | No |
| label_info | SortOrder | No |
| hash_tag_info | SortOrder | No |
| seo_info | SortOrder | No |
| parameter_values | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| artwork_status | SortOrder | No |
| transcoding_status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| master_code | SortOrder | No |
| master_key | SortOrder | No |
| master_type | SortOrder | No |
| video_id | SortOrder | No |
| duration | SortOrder | No |
| show_direction | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| artwork_status | SortOrder | No |
| transcoding_status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| master_code | SortOrder | No |
| master_key | SortOrder | No |
| master_type | SortOrder | No |
| video_id | SortOrder | No |
| duration | SortOrder | No |
| show_direction | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| artwork_status | SortOrder | No |
| transcoding_status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| statistics | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| territory | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| function_name | SortOrder | No |
| mapping_id | SortOrder | No |
| sub_function_name | SortOrder | No |
| sub_mapping_id | SortOrder | No |
| comment | SortOrder | No |
| action | SortOrder | No |
| before | SortOrder | No |
| after | SortOrder | No |
| jira_no | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| function_name | SortOrder | No |
| mapping_id | SortOrder | No |
| sub_function_name | SortOrder | No |
| sub_mapping_id | SortOrder | No |
| comment | SortOrder | No |
| action | SortOrder | No |
| jira_no | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| territory | SortOrder | No |
| function_name | SortOrder | No |
| mapping_id | SortOrder | No |
| sub_function_name | SortOrder | No |
| sub_mapping_id | SortOrder | No |
| comment | SortOrder | No |
| action | SortOrder | No |
| jira_no | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| code | String | No |
| licensor_key | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_key | SortOrder | No |
| code | SortOrder | No |
| company_name | SortOrder | No |
| category | SortOrder | No |
| contact_name | SortOrder | No |
| contact_phone | SortOrder | No |
| contact_email | SortOrder | No |
| contact_mobile | SortOrder | No |
| s3_bucket_name | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_key | SortOrder | No |
| code | SortOrder | No |
| company_name | SortOrder | No |
| category | SortOrder | No |
| contact_name | SortOrder | No |
| contact_phone | SortOrder | No |
| contact_email | SortOrder | No |
| contact_mobile | SortOrder | No |
| s3_bucket_name | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| licensor_key | SortOrder | No |
| code | SortOrder | No |
| company_name | SortOrder | No |
| category | SortOrder | No |
| contact_name | SortOrder | No |
| contact_phone | SortOrder | No |
| contact_email | SortOrder | No |
| contact_mobile | SortOrder | No |
| s3_bucket_name | SortOrder | No |
| enable | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | No |
| territory | String | No |
| Name | Type | Nullable |
|---|---|---|
| code_type | SortOrder | No |
| territory | SortOrder | No |
| code_type_name | SortOrder | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | No |
| memo | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_type_name_local | SortOrder | No |
| code_type_name_eng | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| show_sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| code_type | SortOrder | No |
| territory | SortOrder | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | No |
| memo | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_type_name_local | SortOrder | No |
| code_type_name_eng | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| code_type | SortOrder | No |
| territory | SortOrder | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | No |
| memo | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_type_name_local | SortOrder | No |
| code_type_name_eng | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| show_sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code_type | SortOrder | No |
| territory | SortOrder | No |
| code | SortOrder | No |
| code_group | SortOrder | No |
| value_type | SortOrder | No |
| code_name | SortOrder | No |
| code_parameter | SortOrder | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | No |
| memo | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_name_local | SortOrder | No |
| code_name_eng | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| show_sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code_type | SortOrder | No |
| territory | SortOrder | No |
| code | SortOrder | No |
| code_group | SortOrder | No |
| value_type | SortOrder | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | No |
| memo | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_name_local | SortOrder | No |
| code_name_eng | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code_type | SortOrder | No |
| territory | SortOrder | No |
| code | SortOrder | No |
| code_group | SortOrder | No |
| value_type | SortOrder | No |
| show_sequence | SortOrder | No |
| used_flag | SortOrder | No |
| up_level_type | SortOrder | No |
| memo | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| code_name_local | SortOrder | No |
| code_name_eng | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| show_sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| task_label | SortOrder | No |
| job_name | SortOrder | No |
| task_name | SortOrder | No |
| task_target | SortOrder | No |
| execution_time | SortOrder | No |
| execution_script | SortOrder | No |
| execution_log | SortOrder | No |
| executed | SortOrder | No |
| exec_start_date | SortOrder | No |
| exec_end_date | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| executed | SortOrder | No |
| enable | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| task_label | SortOrder | No |
| job_name | SortOrder | No |
| task_name | SortOrder | No |
| task_target | SortOrder | No |
| execution_time | SortOrder | No |
| execution_script | SortOrder | No |
| executed | SortOrder | No |
| exec_start_date | SortOrder | No |
| exec_end_date | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| task_label | SortOrder | No |
| job_name | SortOrder | No |
| task_name | SortOrder | No |
| task_target | SortOrder | No |
| execution_time | SortOrder | No |
| execution_script | SortOrder | No |
| executed | SortOrder | No |
| exec_start_date | SortOrder | No |
| exec_end_date | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| executed | SortOrder | No |
| enable | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| title | SortOrder | No |
| default_territory | SortOrder | No |
| language | SortOrder | No |
| default_language | SortOrder | No |
| timezone | SortOrder | No |
| priority | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| priority | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| title | SortOrder | No |
| default_territory | SortOrder | No |
| language | SortOrder | No |
| default_language | SortOrder | No |
| timezone | SortOrder | No |
| priority | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| title | SortOrder | No |
| default_territory | SortOrder | No |
| language | SortOrder | No |
| default_language | SortOrder | No |
| timezone | SortOrder | No |
| priority | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| priority | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| menu_id | SortOrder | No |
| name | SortOrder | No |
| show_name | SortOrder | No |
| icon | SortOrder | No |
| type | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| menu_id | SortOrder | No |
| name | SortOrder | No |
| show_name | SortOrder | No |
| icon | SortOrder | No |
| type | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| menu_id | SortOrder | No |
| name | SortOrder | No |
| show_name | SortOrder | No |
| icon | SortOrder | No |
| type | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cascade_id | SortOrder | No |
| name | SortOrder | No |
| pathname | SortOrder | No |
| icon | SortOrder | No |
| show_in_menu | SortOrder | No |
| is_web_page | SortOrder | No |
| is_need_login | SortOrder | No |
| parent_id | SortOrder | No |
| table_memo | SortOrder | No |
| sort | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cascade_id | SortOrder | No |
| name | SortOrder | No |
| pathname | SortOrder | No |
| icon | SortOrder | No |
| show_in_menu | SortOrder | No |
| is_web_page | SortOrder | No |
| is_need_login | SortOrder | No |
| parent_id | SortOrder | No |
| table_memo | SortOrder | No |
| sort | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| cascade_id | SortOrder | No |
| name | SortOrder | No |
| pathname | SortOrder | No |
| icon | SortOrder | No |
| show_in_menu | SortOrder | No |
| is_web_page | SortOrder | No |
| is_need_login | SortOrder | No |
| parent_id | SortOrder | No |
| table_memo | SortOrder | No |
| sort | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| memo | SortOrder | No |
| type | SortOrder | No |
| first_id | SortOrder | No |
| second_id | SortOrder | No |
| third_id | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| memo | SortOrder | No |
| type | SortOrder | No |
| first_id | SortOrder | No |
| second_id | SortOrder | No |
| third_id | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| memo | SortOrder | No |
| type | SortOrder | No |
| first_id | SortOrder | No |
| second_id | SortOrder | No |
| third_id | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| name | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| name | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| name | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| provider_id | SortOrder | No |
| provider | SortOrder | No |
| display_name | SortOrder | No |
| family_name | SortOrder | No |
| given_name | SortOrder | No |
| SortOrder | No | |
| email_verified | SortOrder | No |
| password | SortOrder | No |
| language | SortOrder | No |
| locale | SortOrder | No |
| picture | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| provider_id | SortOrder | No |
| provider | SortOrder | No |
| display_name | SortOrder | No |
| family_name | SortOrder | No |
| given_name | SortOrder | No |
| SortOrder | No | |
| email_verified | SortOrder | No |
| password | SortOrder | No |
| language | SortOrder | No |
| locale | SortOrder | No |
| picture | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| provider_id | SortOrder | No |
| provider | SortOrder | No |
| display_name | SortOrder | No |
| family_name | SortOrder | No |
| given_name | SortOrder | No |
| SortOrder | No | |
| email_verified | SortOrder | No |
| password | SortOrder | No |
| language | SortOrder | No |
| locale | SortOrder | No |
| picture | SortOrder | No |
| enable | SortOrder | No |
| created_user | SortOrder | No |
| created_date | SortOrder | No |
| updated_user | SortOrder | No |
| updated_date | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| provider | String | No |
| providerAccountId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | AccountWhereInput | No |
| some | AccountWhereInput | No |
| none | AccountWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SessionWhereInput | No |
| some | SessionWhereInput | No |
| none | SessionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| set | BigInt | No |
| increment | BigInt | No |
| decrement | BigInt | No |
| multiply | BigInt | No |
| divide | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| create | cms_categoryCreateWithoutCms_category_mappingInput | cms_categoryUncheckedCreateWithoutCms_category_mappingInput | No |
| connectOrCreate | cms_categoryCreateOrConnectWithoutCms_category_mappingInput | No |
| connect | cms_categoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | cms_resourceCreateWithoutCms_category_mappingInput | cms_resourceUncheckedCreateWithoutCms_category_mappingInput | No |
| connectOrCreate | cms_resourceCreateOrConnectWithoutCms_category_mappingInput | No |
| connect | cms_resourceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | cms_curationCreateWithoutCms_curation_mappingInput | cms_curationUncheckedCreateWithoutCms_curation_mappingInput | No |
| connectOrCreate | cms_curationCreateOrConnectWithoutCms_curation_mappingInput | No |
| connect | cms_curationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | cms_hash_tagCreateWithoutCms_hash_tag_mappingInput | cms_hash_tagUncheckedCreateWithoutCms_hash_tag_mappingInput | No |
| connectOrCreate | cms_hash_tagCreateOrConnectWithoutCms_hash_tag_mappingInput | No |
| connect | cms_hash_tagWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | cms_resourceCreateWithoutCms_hash_tag_mappingInput | cms_resourceUncheckedCreateWithoutCms_hash_tag_mappingInput | No |
| connectOrCreate | cms_resourceCreateOrConnectWithoutCms_hash_tag_mappingInput | No |
| connect | cms_resourceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | cms_resourceCreateWithoutCms_published_settingInput | cms_resourceUncheckedCreateWithoutCms_published_settingInput | No |
| connectOrCreate | cms_resourceCreateOrConnectWithoutCms_published_settingInput | No |
| connect | cms_resourceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | cms_resourceCreateWithoutCms_resource_import_logInput | cms_resourceUncheckedCreateWithoutCms_resource_import_logInput | No |
| connectOrCreate | cms_resourceCreateOrConnectWithoutCms_resource_import_logInput | No |
| connect | cms_resourceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | cms_resourceCreateWithoutCms_resource_import_logInput | cms_resourceUncheckedCreateWithoutCms_resource_import_logInput | No |
| connectOrCreate | cms_resourceCreateOrConnectWithoutCms_resource_import_logInput | No |
| upsert | cms_resourceUpsertWithoutCms_resource_import_logInput | No |
| disconnect | Boolean | cms_resourceWhereInput | No |
| delete | Boolean | cms_resourceWhereInput | No |
| connect | cms_resourceWhereUniqueInput | No |
| update | cms_resourceUpdateToOneWithWhereWithoutCms_resource_import_logInput | cms_resourceUpdateWithoutCms_resource_import_logInput | cms_resourceUncheckedUpdateWithoutCms_resource_import_logInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | BigInt | Null | Yes |
| increment | BigInt | No |
| decrement | BigInt | No |
| multiply | BigInt | No |
| divide | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| create | cms_resourceCreateWithoutCms_resource_parameterInput | cms_resourceUncheckedCreateWithoutCms_resource_parameterInput | No |
| connectOrCreate | cms_resourceCreateOrConnectWithoutCms_resource_parameterInput | No |
| connect | cms_resourceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | cms_resourceCreateWithoutCms_resource_statisticsInput | cms_resourceUncheckedCreateWithoutCms_resource_statisticsInput | No |
| connectOrCreate | cms_resourceCreateOrConnectWithoutCms_resource_statisticsInput | No |
| connect | cms_resourceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| upsert | UserUpsertWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutAccountsInput | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| upsert | UserUpsertWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutSessionsInput | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | No |
| in | BigInt[] | No |
| notIn | BigInt[] | No |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | No |
| notIn | String | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | No |
| in | BigInt[] | No |
| notIn | BigInt[] | No |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedBigIntFilter | No |
| _min | NestedBigIntFilter | No |
| _max | NestedBigIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | No |
| notIn | Float | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | No |
| notIn | String | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | Null | Yes |
| notIn | Float | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | Null | Yes |
| in | BigInt[] | Null | Yes |
| notIn | BigInt[] | Null | Yes |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | Null | Yes |
| in | BigInt[] | Null | Yes |
| notIn | BigInt[] | Null | Yes |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedBigIntNullableFilter | No |
| _min | NestedBigIntNullableFilter | No |
| _max | NestedBigIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_resource | cms_resourceCreateNestedOneWithoutCms_category_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_category_mappingWhereUniqueInput | No |
| create | cms_category_mappingCreateWithoutCms_categoryInput | cms_category_mappingUncheckedCreateWithoutCms_categoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_category_mappingCreateManyCms_categoryInput | cms_category_mappingCreateManyCms_categoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_category_mappingWhereUniqueInput | No |
| data | cms_category_mappingUpdateWithoutCms_categoryInput | cms_category_mappingUncheckedUpdateWithoutCms_categoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_category_mappingScalarWhereInput | No |
| data | cms_category_mappingUpdateManyMutationInput | cms_category_mappingUncheckedUpdateManyWithoutCms_categoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_category_mappingScalarWhereInput | cms_category_mappingScalarWhereInput[] | No |
| OR | cms_category_mappingScalarWhereInput[] | No |
| NOT | cms_category_mappingScalarWhereInput | cms_category_mappingScalarWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| category_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| key | String | No |
| code | String | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| key | String | No |
| code | String | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_categoryWhereUniqueInput | No |
| create | cms_categoryCreateWithoutCms_category_mappingInput | cms_categoryUncheckedCreateWithoutCms_category_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_hash_tag_mapping | cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_hash_tag_mapping | cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereUniqueInput | No |
| create | cms_resourceCreateWithoutCms_category_mappingInput | cms_resourceUncheckedCreateWithoutCms_category_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_categoryWhereInput | No |
| data | cms_categoryUpdateWithoutCms_category_mappingInput | cms_categoryUncheckedUpdateWithoutCms_category_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | BoolFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| code | String | StringFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| on_used | Boolean | BoolFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereInput | No |
| data | cms_resourceUpdateWithoutCms_category_mappingInput | cms_resourceUncheckedUpdateWithoutCms_category_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| edited | Boolean | Null | Yes |
| sequence | Int | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| edited | Boolean | Null | Yes |
| sequence | Int | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_curation_mappingWhereUniqueInput | No |
| create | cms_curation_mappingCreateWithoutCms_curationInput | cms_curation_mappingUncheckedCreateWithoutCms_curationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_curation_mappingCreateManyCms_curationInput | cms_curation_mappingCreateManyCms_curationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_curation_mappingWhereUniqueInput | No |
| data | cms_curation_mappingUpdateWithoutCms_curationInput | cms_curation_mappingUncheckedUpdateWithoutCms_curationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_curation_mappingScalarWhereInput | No |
| data | cms_curation_mappingUpdateManyMutationInput | cms_curation_mappingUncheckedUpdateManyWithoutCms_curationInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_curation_mappingScalarWhereInput | cms_curation_mappingScalarWhereInput[] | No |
| OR | cms_curation_mappingScalarWhereInput[] | No |
| NOT | cms_curation_mappingScalarWhereInput | cms_curation_mappingScalarWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| curation_id | BigIntFilter | BigInt | No |
| edited | BoolNullableFilter | Boolean | Null | Yes |
| sequence | IntNullableFilter | Int | Null | Yes |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | cms_curationWhereUniqueInput | No |
| create | cms_curationCreateWithoutCms_curation_mappingInput | cms_curationUncheckedCreateWithoutCms_curation_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_curationWhereInput | No |
| data | cms_curationUpdateWithoutCms_curation_mappingInput | cms_curationUncheckedUpdateWithoutCms_curation_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| default_territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | StringFieldUpdateOperationsInput | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title | NullableJsonNullValueInput | Json | No |
| company_id | String | StringFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| default_territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | StringFieldUpdateOperationsInput | No |
| detail_parameter | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title_en | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_zhtw | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| title_inid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_curation_scheduling_itemCreateManyCms_curation_schedulingInput | cms_curation_scheduling_itemCreateManyCms_curation_schedulingInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_curation_scheduling_itemScalarWhereInput | cms_curation_scheduling_itemScalarWhereInput[] | No |
| OR | cms_curation_scheduling_itemScalarWhereInput[] | No |
| NOT | cms_curation_scheduling_itemScalarWhereInput | cms_curation_scheduling_itemScalarWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| parent_id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| curation_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| curation_id | BigInt | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | Null | Yes |
| territory | String | Null | Yes |
| description | String | No |
| status | String | No |
| published_date | DateTime | Null | Yes |
| synchronized | Boolean | No |
| enabled | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| curation_id | BigInt | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | Null | Yes |
| territory | String | Null | Yes |
| description | String | No |
| status | String | No |
| published_date | DateTime | Null | Yes |
| synchronized | Boolean | No |
| enabled | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | StringFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| synchronized | Boolean | BoolFieldUpdateOperationsInput | No |
| enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | NullableJsonNullValueInput | Json | No |
| key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| territory | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | StringFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| synchronized | Boolean | BoolFieldUpdateOperationsInput | No |
| enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| created_user | String | StringFieldUpdateOperationsInput | No |
| created_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_resource | cms_resourceCreateNestedOneWithoutCms_hash_tag_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_hash_tag_mappingWhereUniqueInput | No |
| create | cms_hash_tag_mappingCreateWithoutCms_hash_tagInput | cms_hash_tag_mappingUncheckedCreateWithoutCms_hash_tagInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_hash_tag_mappingCreateManyCms_hash_tagInput | cms_hash_tag_mappingCreateManyCms_hash_tagInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_hash_tag_mappingWhereUniqueInput | No |
| data | cms_hash_tag_mappingUpdateWithoutCms_hash_tagInput | cms_hash_tag_mappingUncheckedUpdateWithoutCms_hash_tagInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_hash_tag_mappingScalarWhereInput | No |
| data | cms_hash_tag_mappingUpdateManyMutationInput | cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_hash_tagInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_hash_tag_mappingScalarWhereInput | cms_hash_tag_mappingScalarWhereInput[] | No |
| OR | cms_hash_tag_mappingScalarWhereInput[] | No |
| NOT | cms_hash_tag_mappingScalarWhereInput | cms_hash_tag_mappingScalarWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| hash_tag_id | BigIntFilter | BigInt | No |
| parameter_values | JsonNullableFilter | No |
| sequence | IntNullableFilter | Int | Null | Yes |
| enable | BoolNullableFilter | Boolean | Null | Yes |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| title | String | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| title | String | No |
| sequence | Int | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_hash_tagWhereUniqueInput | No |
| create | cms_hash_tagCreateWithoutCms_hash_tag_mappingInput | cms_hash_tagUncheckedCreateWithoutCms_hash_tag_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereUniqueInput | No |
| create | cms_resourceCreateWithoutCms_hash_tag_mappingInput | cms_resourceUncheckedCreateWithoutCms_hash_tag_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_hash_tagWhereInput | No |
| data | cms_hash_tagUpdateWithoutCms_hash_tag_mappingInput | cms_hash_tagUncheckedUpdateWithoutCms_hash_tag_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereInput | No |
| data | cms_resourceUpdateWithoutCms_hash_tag_mappingInput | cms_resourceUncheckedUpdateWithoutCms_hash_tag_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereUniqueInput | No |
| create | cms_resourceCreateWithoutCms_published_settingInput | cms_resourceUncheckedCreateWithoutCms_published_settingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereInput | No |
| data | cms_resourceUpdateWithoutCms_published_settingInput | cms_resourceUncheckedUpdateWithoutCms_published_settingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_category | cms_categoryCreateNestedOneWithoutCms_category_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| category_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_category_mappingWhereUniqueInput | No |
| create | cms_category_mappingCreateWithoutCms_resourceInput | cms_category_mappingUncheckedCreateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_category_mappingCreateManyCms_resourceInput | cms_category_mappingCreateManyCms_resourceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| cms_hash_tag | cms_hash_tagCreateNestedOneWithoutCms_hash_tag_mappingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| hash_tag_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_hash_tag_mappingWhereUniqueInput | No |
| create | cms_hash_tag_mappingCreateWithoutCms_resourceInput | cms_hash_tag_mappingUncheckedCreateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_hash_tag_mappingCreateManyCms_resourceInput | cms_hash_tag_mappingCreateManyCms_resourceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| show_start_date | DateTime | Null | Yes |
| show_end_date | DateTime | Null | Yes |
| play_start_date | DateTime | Null | Yes |
| play_end_date | DateTime | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| show_start_date | DateTime | Null | Yes |
| show_end_date | DateTime | Null | Yes |
| play_start_date | DateTime | Null | Yes |
| play_end_date | DateTime | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_published_settingWhereUniqueInput | No |
| create | cms_published_settingCreateWithoutCms_resourceInput | cms_published_settingUncheckedCreateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_published_settingCreateManyCms_resourceInput | cms_published_settingCreateManyCms_resourceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| partner_resource_id | String | Null | Yes |
| channel_code | String | Null | Yes |
| execute_process | String | No |
| execute_status | String | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | No |
| poster_type | String | Null | Yes |
| video_import | Int | No |
| oa_task_job_id | BigInt | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| partner_resource_id | String | Null | Yes |
| channel_code | String | Null | Yes |
| execute_process | String | No |
| execute_status | String | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | No |
| poster_type | String | Null | Yes |
| video_import | Int | No |
| oa_task_job_id | BigInt | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resource_import_logWhereUniqueInput | No |
| create | cms_resource_import_logCreateWithoutCms_resourceInput | cms_resource_import_logUncheckedCreateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_resource_import_logCreateManyCms_resourceInput | cms_resource_import_logCreateManyCms_resourceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | No |
| master_code | String | Null | Yes |
| master_key | String | Null | Yes |
| master_type | String | Null | Yes |
| video_id | String | Null | Yes |
| duration | String | Null | Yes |
| show_direction | String | Null | Yes |
| sub_statuses | NullableJsonNullValueInput | Json | No |
| detail | NullableJsonNullValueInput | Json | No |
| description | NullableJsonNullValueInput | Json | No |
| player_info | NullableJsonNullValueInput | Json | No |
| posters | NullableJsonNullValueInput | Json | No |
| category_info | NullableJsonNullValueInput | Json | No |
| label_info | NullableJsonNullValueInput | Json | No |
| hash_tag_info | NullableJsonNullValueInput | Json | No |
| seo_info | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| artwork_status | String | Null | Yes |
| transcoding_status | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| territory | String | No |
| master_code | String | Null | Yes |
| master_key | String | Null | Yes |
| master_type | String | Null | Yes |
| video_id | String | Null | Yes |
| duration | String | Null | Yes |
| show_direction | String | Null | Yes |
| sub_statuses | NullableJsonNullValueInput | Json | No |
| detail | NullableJsonNullValueInput | Json | No |
| description | NullableJsonNullValueInput | Json | No |
| player_info | NullableJsonNullValueInput | Json | No |
| posters | NullableJsonNullValueInput | Json | No |
| category_info | NullableJsonNullValueInput | Json | No |
| label_info | NullableJsonNullValueInput | Json | No |
| hash_tag_info | NullableJsonNullValueInput | Json | No |
| seo_info | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| artwork_status | String | Null | Yes |
| transcoding_status | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resource_parameterWhereUniqueInput | No |
| create | cms_resource_parameterCreateWithoutCms_resourceInput | cms_resource_parameterUncheckedCreateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_resource_parameterCreateManyCms_resourceInput | cms_resource_parameterCreateManyCms_resourceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resource_statisticsWhereUniqueInput | No |
| create | cms_resource_statisticsCreateWithoutCms_resourceInput | cms_resource_statisticsUncheckedCreateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | cms_resource_statisticsCreateManyCms_resourceInput | cms_resource_statisticsCreateManyCms_resourceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_category_mappingWhereUniqueInput | No |
| data | cms_category_mappingUpdateWithoutCms_resourceInput | cms_category_mappingUncheckedUpdateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_category_mappingScalarWhereInput | No |
| data | cms_category_mappingUpdateManyMutationInput | cms_category_mappingUncheckedUpdateManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_hash_tag_mappingWhereUniqueInput | No |
| data | cms_hash_tag_mappingUpdateWithoutCms_resourceInput | cms_hash_tag_mappingUncheckedUpdateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_hash_tag_mappingScalarWhereInput | No |
| data | cms_hash_tag_mappingUpdateManyMutationInput | cms_hash_tag_mappingUncheckedUpdateManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_published_settingWhereUniqueInput | No |
| data | cms_published_settingUpdateWithoutCms_resourceInput | cms_published_settingUncheckedUpdateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_published_settingScalarWhereInput | No |
| data | cms_published_settingUpdateManyMutationInput | cms_published_settingUncheckedUpdateManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_published_settingScalarWhereInput | cms_published_settingScalarWhereInput[] | No |
| OR | cms_published_settingScalarWhereInput[] | No |
| NOT | cms_published_settingScalarWhereInput | cms_published_settingScalarWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| resource_id | BigIntFilter | BigInt | No |
| territory | StringFilter | String | No |
| published_date | DateTimeFilter | DateTime | No |
| unpublished_date | DateTimeFilter | DateTime | No |
| show_start_date | DateTimeNullableFilter | DateTime | Null | Yes |
| show_end_date | DateTimeNullableFilter | DateTime | Null | Yes |
| play_start_date | DateTimeNullableFilter | DateTime | Null | Yes |
| play_end_date | DateTimeNullableFilter | DateTime | Null | Yes |
| parameter_values | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resource_import_logWhereUniqueInput | No |
| data | cms_resource_import_logUpdateWithoutCms_resourceInput | cms_resource_import_logUncheckedUpdateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resource_import_logScalarWhereInput | No |
| data | cms_resource_import_logUpdateManyMutationInput | cms_resource_import_logUncheckedUpdateManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_resource_import_logScalarWhereInput | cms_resource_import_logScalarWhereInput[] | No |
| OR | cms_resource_import_logScalarWhereInput[] | No |
| NOT | cms_resource_import_logScalarWhereInput | cms_resource_import_logScalarWhereInput[] | No |
| id | BigIntFilter | BigInt | No |
| partner_resource_id | StringNullableFilter | String | Null | Yes |
| channel_code | StringNullableFilter | String | Null | Yes |
| resource_id | BigIntNullableFilter | BigInt | Null | Yes |
| execute_process | StringFilter | String | No |
| execute_status | StringFilter | String | No |
| imp_result | JsonNullableFilter | No |
| poster_import | IntFilter | Int | No |
| poster_type | StringNullableFilter | String | Null | Yes |
| video_import | IntFilter | Int | No |
| oa_task_job_id | BigIntFilter | BigInt | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resource_parameterWhereUniqueInput | No |
| data | cms_resource_parameterUpdateWithoutCms_resourceInput | cms_resource_parameterUncheckedUpdateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resource_parameterScalarWhereInput | No |
| data | cms_resource_parameterUpdateManyMutationInput | cms_resource_parameterUncheckedUpdateManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resource_statisticsWhereUniqueInput | No |
| data | cms_resource_statisticsUpdateWithoutCms_resourceInput | cms_resource_statisticsUncheckedUpdateWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resource_statisticsScalarWhereInput | No |
| data | cms_resource_statisticsUpdateManyMutationInput | cms_resource_statisticsUncheckedUpdateManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | cms_resource_statisticsScalarWhereInput | cms_resource_statisticsScalarWhereInput[] | No |
| OR | cms_resource_statisticsScalarWhereInput[] | No |
| NOT | cms_resource_statisticsScalarWhereInput | cms_resource_statisticsScalarWhereInput[] | No |
| resource_id | BigIntFilter | BigInt | No |
| territory | StringFilter | String | No |
| statistics | JsonNullableFilter | No |
| updated_user | StringFilter | String | No |
| updated_date | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereUniqueInput | No |
| create | cms_resourceCreateWithoutCms_resource_import_logInput | cms_resourceUncheckedCreateWithoutCms_resource_import_logInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereInput | No |
| data | cms_resourceUpdateWithoutCms_resource_import_logInput | cms_resourceUncheckedUpdateWithoutCms_resource_import_logInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_statistics | cms_resource_statisticsUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereUniqueInput | No |
| create | cms_resourceCreateWithoutCms_resource_parameterInput | cms_resourceUncheckedCreateWithoutCms_resource_parameterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereInput | No |
| data | cms_resourceUpdateWithoutCms_resource_parameterInput | cms_resourceUncheckedUpdateWithoutCms_resource_parameterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | Null | Yes |
| code | String | Null | Yes |
| type | String | No |
| title | NullableJsonNullValueInput | Json | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | Null | Yes |
| status | String | No |
| partner_resource_id | String | Null | Yes |
| published_date | DateTime | Null | Yes |
| unpublished_date | DateTime | Null | Yes |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | Null | Yes |
| title_zhtw | String | Null | Yes |
| title_inid | String | Null | Yes |
| cms_category_mapping | cms_category_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_hash_tag_mapping | cms_hash_tag_mappingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_published_setting | cms_published_settingUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_import_log | cms_resource_import_logUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| cms_resource_parameter | cms_resource_parameterUncheckedCreateNestedManyWithoutCms_resourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereUniqueInput | No |
| create | cms_resourceCreateWithoutCms_resource_statisticsInput | cms_resourceUncheckedCreateWithoutCms_resource_statisticsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | cms_resourceWhereInput | No |
| data | cms_resourceUpdateWithoutCms_resource_statisticsInput | cms_resourceUncheckedUpdateWithoutCms_resource_statisticsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| image | String | Null | Yes |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| image | String | Null | Yes |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sessions | SessionUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sessions | SessionUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| image | String | Null | Yes |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| image | String | Null | Yes |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accounts | AccountUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accounts | AccountUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AccountCreateManyUserInput | AccountCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SessionCreateManyUserInput | SessionCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| update | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| data | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountScalarWhereInput | No |
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| OR | AccountScalarWhereInput[] | No |
| NOT | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| id | StringFilter | String | No |
| userId | StringFilter | String | No |
| type | StringFilter | String | No |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| id_token | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| update | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| data | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionScalarWhereInput | No |
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| OR | SessionScalarWhereInput[] | No |
| NOT | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| sessionToken | StringFilter | String | No |
| userId | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_resource | cms_resourceUpdateOneRequiredWithoutCms_category_mappingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| edited | Boolean | Null | Yes |
| sequence | Int | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| edited | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| edited | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| edited | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| curation_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_resource | cms_resourceUpdateOneRequiredWithoutCms_hash_tag_mappingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| resource_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| category_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| hash_tag_id | BigInt | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | Null | Yes |
| enable | Boolean | Null | Yes |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| show_start_date | DateTime | Null | Yes |
| show_end_date | DateTime | Null | Yes |
| play_start_date | DateTime | Null | Yes |
| play_end_date | DateTime | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| partner_resource_id | String | Null | Yes |
| channel_code | String | Null | Yes |
| execute_process | String | No |
| execute_status | String | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | No |
| poster_type | String | Null | Yes |
| video_import | Int | No |
| oa_task_job_id | BigInt | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | No |
| master_code | String | Null | Yes |
| master_key | String | Null | Yes |
| master_type | String | Null | Yes |
| video_id | String | Null | Yes |
| duration | String | Null | Yes |
| show_direction | String | Null | Yes |
| sub_statuses | NullableJsonNullValueInput | Json | No |
| detail | NullableJsonNullValueInput | Json | No |
| description | NullableJsonNullValueInput | Json | No |
| player_info | NullableJsonNullValueInput | Json | No |
| posters | NullableJsonNullValueInput | Json | No |
| category_info | NullableJsonNullValueInput | Json | No |
| label_info | NullableJsonNullValueInput | Json | No |
| hash_tag_info | NullableJsonNullValueInput | Json | No |
| seo_info | NullableJsonNullValueInput | Json | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| artwork_status | String | Null | Yes |
| transcoding_status | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| territory | String | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_category | cms_categoryUpdateOneRequiredWithoutCms_category_mappingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| category_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| category_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cms_hash_tag | cms_hash_tagUpdateOneRequiredWithoutCms_hash_tag_mappingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| hash_tag_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| hash_tag_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| parameter_values | NullableJsonNullValueInput | Json | No |
| sequence | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| enable | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| unpublished_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| show_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| show_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| unpublished_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| show_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| show_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| territory | String | StringFieldUpdateOperationsInput | No |
| published_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| unpublished_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| show_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| show_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_start_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| play_end_date | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| parameter_values | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| partner_resource_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| channel_code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| execute_process | String | StringFieldUpdateOperationsInput | No |
| execute_status | String | StringFieldUpdateOperationsInput | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | IntFieldUpdateOperationsInput | No |
| poster_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| video_import | Int | IntFieldUpdateOperationsInput | No |
| oa_task_job_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| partner_resource_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| channel_code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| execute_process | String | StringFieldUpdateOperationsInput | No |
| execute_status | String | StringFieldUpdateOperationsInput | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | IntFieldUpdateOperationsInput | No |
| poster_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| video_import | Int | IntFieldUpdateOperationsInput | No |
| oa_task_job_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | BigIntFieldUpdateOperationsInput | No |
| partner_resource_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| channel_code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| execute_process | String | StringFieldUpdateOperationsInput | No |
| execute_status | String | StringFieldUpdateOperationsInput | No |
| imp_result | NullableJsonNullValueInput | Json | No |
| poster_import | Int | IntFieldUpdateOperationsInput | No |
| poster_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| video_import | Int | IntFieldUpdateOperationsInput | No |
| oa_task_job_id | BigInt | BigIntFieldUpdateOperationsInput | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | StringFieldUpdateOperationsInput | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | StringFieldUpdateOperationsInput | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| territory | String | StringFieldUpdateOperationsInput | No |
| statistics | NullableJsonNullValueInput | Json | No |
| updated_user | String | StringFieldUpdateOperationsInput | No |
| updated_date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| territory | String | Yes |
| key | String | Yes |
| code | String | Yes |
| title | Json | No |
| on_used | Boolean | Yes |
| sequence | Int | No |
| statistics | Json | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_category_mapping | cms_category_mapping[] | No |
| _count | Cms_categoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| resource_id | BigInt | Yes |
| category_id | BigInt | Yes |
| parameter_values | Json | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_category | cms_category | Yes |
| cms_resource | cms_resource | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| licensor_id | BigInt | Yes |
| code | String | Yes |
| handle | String | Yes |
| title | Json | No |
| image | Json | No |
| description | Json | No |
| statistics | Json | No |
| parameter_values | Json | No |
| seo_info | Json | No |
| territory | String | Yes |
| default_territory | String | Yes |
| created_date | DateTime | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| key | String | No |
| code | String | No |
| title | Json | No |
| company_id | String | Yes |
| territory | String | Yes |
| default_territory | String | No |
| status | String | Yes |
| detail_parameter | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| cms_curation_mapping | cms_curation_mapping[] | No |
| _count | Cms_curationCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| resource_id | BigInt | Yes |
| curation_id | BigInt | Yes |
| edited | Boolean | No |
| sequence | Int | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_curation | cms_curation | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| curation_id | BigInt | Yes |
| title | Json | No |
| key | String | No |
| territory | String | No |
| description | String | Yes |
| status | String | Yes |
| published_date | DateTime | No |
| synchronized | Boolean | Yes |
| enabled | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_curation_scheduling_item | cms_curation_scheduling_item[] | No |
| _count | Cms_curation_schedulingCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| parent_id | BigInt | Yes |
| resource_id | BigInt | Yes |
| curation_id | BigInt | Yes |
| parameter_values | Json | No |
| sequence | Int | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_curation_scheduling | cms_curation_scheduling | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| title | String | Yes |
| sequence | Int | No |
| statistics | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_hash_tag_mapping | cms_hash_tag_mapping[] | No |
| _count | Cms_hash_tagCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| resource_id | BigInt | Yes |
| hash_tag_id | BigInt | Yes |
| parameter_values | Json | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_hash_tag | cms_hash_tag | Yes |
| cms_resource | cms_resource | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| key | String | No |
| title | Json | No |
| sequence | Int | No |
| statistics | Json | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| mapping_type | String | Yes |
| detail_mapping_id | String | Yes |
| label_info_id | BigInt | Yes |
| parameter_values | Json | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| resource_id | BigInt | Yes |
| territory | String | Yes |
| published_date | DateTime | Yes |
| unpublished_date | DateTime | Yes |
| show_start_date | DateTime | No |
| show_end_date | DateTime | No |
| play_start_date | DateTime | No |
| play_end_date | DateTime | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_resource | cms_resource | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| key | String | No |
| code | String | No |
| type | String | Yes |
| title | Json | No |
| channel_code | String | Yes |
| licensor_id | BigInt | Yes |
| company_id | String | Yes |
| territory | String | Yes |
| default_territory | String | No |
| status | String | Yes |
| partner_resource_id | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| enable | Int | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| cms_category_mapping | cms_category_mapping[] | No |
| cms_hash_tag_mapping | cms_hash_tag_mapping[] | No |
| cms_published_setting | cms_published_setting[] | No |
| cms_resource_import_log | cms_resource_import_log[] | No |
| cms_resource_parameter | cms_resource_parameter[] | No |
| cms_resource_statistics | cms_resource_statistics[] | No |
| _count | Cms_resourceCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| partner_resource_id | String | No |
| channel_code | String | No |
| resource_id | BigInt | No |
| execute_process | String | Yes |
| execute_status | String | Yes |
| imp_result | Json | No |
| poster_import | Int | Yes |
| poster_type | String | No |
| video_import | Int | Yes |
| oa_task_job_id | BigInt | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_resource | cms_resource | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | Yes |
| territory | String | Yes |
| master_code | String | No |
| master_key | String | No |
| master_type | String | No |
| video_id | String | No |
| duration | String | No |
| show_direction | String | No |
| sub_statuses | Json | No |
| detail | Json | No |
| description | Json | No |
| player_info | Json | No |
| posters | Json | No |
| category_info | Json | No |
| label_info | Json | No |
| hash_tag_info | Json | No |
| seo_info | Json | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| artwork_status | String | No |
| transcoding_status | String | No |
| cms_resource | cms_resource | Yes |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | Yes |
| territory | String | Yes |
| statistics | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| cms_resource | cms_resource | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| territory | String | Yes |
| function_name | String | Yes |
| mapping_id | String | Yes |
| sub_function_name | String | No |
| sub_mapping_id | String | No |
| comment | String | Yes |
| action | String | Yes |
| before | Json | No |
| after | Json | No |
| jira_no | String | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| licensor_key | String | Yes |
| code | String | No |
| company_name | String | No |
| category | String | No |
| contact_name | String | No |
| contact_phone | String | No |
| contact_email | String | No |
| contact_mobile | String | No |
| s3_bucket_name | String | No |
| enable | Boolean | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | Yes |
| territory | String | Yes |
| code_type_name | Json | No |
| show_sequence | Int | Yes |
| used_flag | Boolean | Yes |
| up_level_type | String | No |
| memo | String | No |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| code_type_name_local | String | No |
| code_type_name_eng | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| code_type | String | Yes |
| territory | String | Yes |
| code | String | Yes |
| code_group | String | No |
| value_type | String | No |
| code_name | Json | No |
| code_parameter | Json | No |
| show_sequence | Int | Yes |
| used_flag | Boolean | Yes |
| up_level_type | String | No |
| memo | String | No |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| code_name_local | String | No |
| code_name_eng | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| task_label | String | Yes |
| job_name | String | Yes |
| task_name | String | Yes |
| task_target | String | Yes |
| execution_time | DateTime | No |
| execution_script | String | No |
| execution_log | Json | No |
| executed | Int | Yes |
| exec_start_date | DateTime | No |
| exec_end_date | DateTime | No |
| enable | Int | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| code | String | Yes |
| title | String | No |
| default_territory | String | Yes |
| language | String | Yes |
| default_language | String | Yes |
| timezone | String | No |
| priority | Int | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| menu_id | String | Yes |
| name | String | Yes |
| show_name | String | Yes |
| icon | String | No |
| type | String | Yes |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| cascade_id | String | No |
| name | String | Yes |
| pathname | String | Yes |
| icon | String | No |
| show_in_menu | Boolean | Yes |
| is_web_page | Boolean | Yes |
| is_need_login | Boolean | Yes |
| parent_id | String | No |
| table_memo | String | No |
| sort | Int | Yes |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| memo | String | No |
| type | String | Yes |
| first_id | String | Yes |
| second_id | String | Yes |
| third_id | String | No |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| code | String | Yes |
| name | String | Yes |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| provider_id | String | Yes |
| provider | String | Yes |
| display_name | String | Yes |
| family_name | String | Yes |
| given_name | String | Yes |
| String | Yes | |
| email_verified | Boolean | No |
| password | String | Yes |
| language | String | Yes |
| locale | String | No |
| picture | String | No |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| userId | String | Yes |
| type | String | Yes |
| provider | String | Yes |
| providerAccountId | String | Yes |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| sessionToken | String | Yes |
| userId | String | Yes |
| expires | DateTime | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | No |
| String | No | |
| emailVerified | DateTime | No |
| image | String | No |
| accounts | Account[] | No |
| sessions | Session[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | Yes |
| token | String | Yes |
| expires | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_categoryCountAggregateOutputType | No |
| _avg | Cms_categoryAvgAggregateOutputType | No |
| _sum | Cms_categorySumAggregateOutputType | No |
| _min | Cms_categoryMinAggregateOutputType | No |
| _max | Cms_categoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| territory | String | Yes |
| key | String | Yes |
| code | String | Yes |
| title | Json | No |
| on_used | Boolean | Yes |
| sequence | Int | No |
| statistics | Json | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_categoryCountAggregateOutputType | No |
| _avg | Cms_categoryAvgAggregateOutputType | No |
| _sum | Cms_categorySumAggregateOutputType | No |
| _min | Cms_categoryMinAggregateOutputType | No |
| _max | Cms_categoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_category_mappingCountAggregateOutputType | No |
| _avg | Cms_category_mappingAvgAggregateOutputType | No |
| _sum | Cms_category_mappingSumAggregateOutputType | No |
| _min | Cms_category_mappingMinAggregateOutputType | No |
| _max | Cms_category_mappingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| resource_id | BigInt | Yes |
| category_id | BigInt | Yes |
| parameter_values | Json | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_category_mappingCountAggregateOutputType | No |
| _avg | Cms_category_mappingAvgAggregateOutputType | No |
| _sum | Cms_category_mappingSumAggregateOutputType | No |
| _min | Cms_category_mappingMinAggregateOutputType | No |
| _max | Cms_category_mappingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_channelCountAggregateOutputType | No |
| _avg | Cms_channelAvgAggregateOutputType | No |
| _sum | Cms_channelSumAggregateOutputType | No |
| _min | Cms_channelMinAggregateOutputType | No |
| _max | Cms_channelMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| licensor_id | BigInt | Yes |
| code | String | Yes |
| handle | String | Yes |
| title | Json | No |
| image | Json | No |
| description | Json | No |
| statistics | Json | No |
| parameter_values | Json | No |
| seo_info | Json | No |
| territory | String | Yes |
| default_territory | String | Yes |
| created_date | DateTime | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| _count | Cms_channelCountAggregateOutputType | No |
| _avg | Cms_channelAvgAggregateOutputType | No |
| _sum | Cms_channelSumAggregateOutputType | No |
| _min | Cms_channelMinAggregateOutputType | No |
| _max | Cms_channelMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_curationCountAggregateOutputType | No |
| _avg | Cms_curationAvgAggregateOutputType | No |
| _sum | Cms_curationSumAggregateOutputType | No |
| _min | Cms_curationMinAggregateOutputType | No |
| _max | Cms_curationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| key | String | No |
| code | String | No |
| title | Json | No |
| company_id | String | Yes |
| territory | String | Yes |
| default_territory | String | No |
| status | String | Yes |
| detail_parameter | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| _count | Cms_curationCountAggregateOutputType | No |
| _avg | Cms_curationAvgAggregateOutputType | No |
| _sum | Cms_curationSumAggregateOutputType | No |
| _min | Cms_curationMinAggregateOutputType | No |
| _max | Cms_curationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_curation_mappingCountAggregateOutputType | No |
| _avg | Cms_curation_mappingAvgAggregateOutputType | No |
| _sum | Cms_curation_mappingSumAggregateOutputType | No |
| _min | Cms_curation_mappingMinAggregateOutputType | No |
| _max | Cms_curation_mappingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| resource_id | BigInt | Yes |
| curation_id | BigInt | Yes |
| edited | Boolean | No |
| sequence | Int | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_curation_mappingCountAggregateOutputType | No |
| _avg | Cms_curation_mappingAvgAggregateOutputType | No |
| _sum | Cms_curation_mappingSumAggregateOutputType | No |
| _min | Cms_curation_mappingMinAggregateOutputType | No |
| _max | Cms_curation_mappingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_curation_schedulingCountAggregateOutputType | No |
| _avg | Cms_curation_schedulingAvgAggregateOutputType | No |
| _sum | Cms_curation_schedulingSumAggregateOutputType | No |
| _min | Cms_curation_schedulingMinAggregateOutputType | No |
| _max | Cms_curation_schedulingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| curation_id | BigInt | Yes |
| title | Json | No |
| key | String | No |
| territory | String | No |
| description | String | Yes |
| status | String | Yes |
| published_date | DateTime | No |
| synchronized | Boolean | Yes |
| enabled | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_curation_schedulingCountAggregateOutputType | No |
| _avg | Cms_curation_schedulingAvgAggregateOutputType | No |
| _sum | Cms_curation_schedulingSumAggregateOutputType | No |
| _min | Cms_curation_schedulingMinAggregateOutputType | No |
| _max | Cms_curation_schedulingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_curation_scheduling_itemCountAggregateOutputType | No |
| _avg | Cms_curation_scheduling_itemAvgAggregateOutputType | No |
| _sum | Cms_curation_scheduling_itemSumAggregateOutputType | No |
| _min | Cms_curation_scheduling_itemMinAggregateOutputType | No |
| _max | Cms_curation_scheduling_itemMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| parent_id | BigInt | Yes |
| resource_id | BigInt | Yes |
| curation_id | BigInt | Yes |
| parameter_values | Json | No |
| sequence | Int | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_curation_scheduling_itemCountAggregateOutputType | No |
| _avg | Cms_curation_scheduling_itemAvgAggregateOutputType | No |
| _sum | Cms_curation_scheduling_itemSumAggregateOutputType | No |
| _min | Cms_curation_scheduling_itemMinAggregateOutputType | No |
| _max | Cms_curation_scheduling_itemMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_hash_tagCountAggregateOutputType | No |
| _avg | Cms_hash_tagAvgAggregateOutputType | No |
| _sum | Cms_hash_tagSumAggregateOutputType | No |
| _min | Cms_hash_tagMinAggregateOutputType | No |
| _max | Cms_hash_tagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| title | String | Yes |
| sequence | Int | No |
| statistics | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_hash_tagCountAggregateOutputType | No |
| _avg | Cms_hash_tagAvgAggregateOutputType | No |
| _sum | Cms_hash_tagSumAggregateOutputType | No |
| _min | Cms_hash_tagMinAggregateOutputType | No |
| _max | Cms_hash_tagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_hash_tag_mappingCountAggregateOutputType | No |
| _avg | Cms_hash_tag_mappingAvgAggregateOutputType | No |
| _sum | Cms_hash_tag_mappingSumAggregateOutputType | No |
| _min | Cms_hash_tag_mappingMinAggregateOutputType | No |
| _max | Cms_hash_tag_mappingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| resource_id | BigInt | Yes |
| hash_tag_id | BigInt | Yes |
| parameter_values | Json | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_hash_tag_mappingCountAggregateOutputType | No |
| _avg | Cms_hash_tag_mappingAvgAggregateOutputType | No |
| _sum | Cms_hash_tag_mappingSumAggregateOutputType | No |
| _min | Cms_hash_tag_mappingMinAggregateOutputType | No |
| _max | Cms_hash_tag_mappingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_label_infoCountAggregateOutputType | No |
| _avg | Cms_label_infoAvgAggregateOutputType | No |
| _sum | Cms_label_infoSumAggregateOutputType | No |
| _min | Cms_label_infoMinAggregateOutputType | No |
| _max | Cms_label_infoMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| key | String | No |
| title | Json | No |
| sequence | Int | No |
| statistics | Json | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| _count | Cms_label_infoCountAggregateOutputType | No |
| _avg | Cms_label_infoAvgAggregateOutputType | No |
| _sum | Cms_label_infoSumAggregateOutputType | No |
| _min | Cms_label_infoMinAggregateOutputType | No |
| _max | Cms_label_infoMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_label_info_mappingCountAggregateOutputType | No |
| _avg | Cms_label_info_mappingAvgAggregateOutputType | No |
| _sum | Cms_label_info_mappingSumAggregateOutputType | No |
| _min | Cms_label_info_mappingMinAggregateOutputType | No |
| _max | Cms_label_info_mappingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| mapping_type | String | Yes |
| detail_mapping_id | String | Yes |
| label_info_id | BigInt | Yes |
| parameter_values | Json | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_label_info_mappingCountAggregateOutputType | No |
| _avg | Cms_label_info_mappingAvgAggregateOutputType | No |
| _sum | Cms_label_info_mappingSumAggregateOutputType | No |
| _min | Cms_label_info_mappingMinAggregateOutputType | No |
| _max | Cms_label_info_mappingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_published_settingCountAggregateOutputType | No |
| _avg | Cms_published_settingAvgAggregateOutputType | No |
| _sum | Cms_published_settingSumAggregateOutputType | No |
| _min | Cms_published_settingMinAggregateOutputType | No |
| _max | Cms_published_settingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| resource_id | BigInt | Yes |
| territory | String | Yes |
| published_date | DateTime | Yes |
| unpublished_date | DateTime | Yes |
| show_start_date | DateTime | No |
| show_end_date | DateTime | No |
| play_start_date | DateTime | No |
| play_end_date | DateTime | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_published_settingCountAggregateOutputType | No |
| _avg | Cms_published_settingAvgAggregateOutputType | No |
| _sum | Cms_published_settingSumAggregateOutputType | No |
| _min | Cms_published_settingMinAggregateOutputType | No |
| _max | Cms_published_settingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_resourceCountAggregateOutputType | No |
| _avg | Cms_resourceAvgAggregateOutputType | No |
| _sum | Cms_resourceSumAggregateOutputType | No |
| _min | Cms_resourceMinAggregateOutputType | No |
| _max | Cms_resourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| key | String | No |
| code | String | No |
| type | String | Yes |
| title | Json | No |
| channel_code | String | Yes |
| licensor_id | BigInt | Yes |
| company_id | String | Yes |
| territory | String | Yes |
| default_territory | String | No |
| status | String | Yes |
| partner_resource_id | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| enable | Int | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| _count | Cms_resourceCountAggregateOutputType | No |
| _avg | Cms_resourceAvgAggregateOutputType | No |
| _sum | Cms_resourceSumAggregateOutputType | No |
| _min | Cms_resourceMinAggregateOutputType | No |
| _max | Cms_resourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_resource_import_logCountAggregateOutputType | No |
| _avg | Cms_resource_import_logAvgAggregateOutputType | No |
| _sum | Cms_resource_import_logSumAggregateOutputType | No |
| _min | Cms_resource_import_logMinAggregateOutputType | No |
| _max | Cms_resource_import_logMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| partner_resource_id | String | No |
| channel_code | String | No |
| resource_id | BigInt | No |
| execute_process | String | Yes |
| execute_status | String | Yes |
| imp_result | Json | No |
| poster_import | Int | Yes |
| poster_type | String | No |
| video_import | Int | Yes |
| oa_task_job_id | BigInt | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_resource_import_logCountAggregateOutputType | No |
| _avg | Cms_resource_import_logAvgAggregateOutputType | No |
| _sum | Cms_resource_import_logSumAggregateOutputType | No |
| _min | Cms_resource_import_logMinAggregateOutputType | No |
| _max | Cms_resource_import_logMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_resource_parameterCountAggregateOutputType | No |
| _avg | Cms_resource_parameterAvgAggregateOutputType | No |
| _sum | Cms_resource_parameterSumAggregateOutputType | No |
| _min | Cms_resource_parameterMinAggregateOutputType | No |
| _max | Cms_resource_parameterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | Yes |
| territory | String | Yes |
| master_code | String | No |
| master_key | String | No |
| master_type | String | No |
| video_id | String | No |
| duration | String | No |
| show_direction | String | No |
| sub_statuses | Json | No |
| detail | Json | No |
| description | Json | No |
| player_info | Json | No |
| posters | Json | No |
| category_info | Json | No |
| label_info | Json | No |
| hash_tag_info | Json | No |
| seo_info | Json | No |
| parameter_values | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| artwork_status | String | No |
| transcoding_status | String | No |
| _count | Cms_resource_parameterCountAggregateOutputType | No |
| _avg | Cms_resource_parameterAvgAggregateOutputType | No |
| _sum | Cms_resource_parameterSumAggregateOutputType | No |
| _min | Cms_resource_parameterMinAggregateOutputType | No |
| _max | Cms_resource_parameterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Cms_resource_statisticsCountAggregateOutputType | No |
| _avg | Cms_resource_statisticsAvgAggregateOutputType | No |
| _sum | Cms_resource_statisticsSumAggregateOutputType | No |
| _min | Cms_resource_statisticsMinAggregateOutputType | No |
| _max | Cms_resource_statisticsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | Yes |
| territory | String | Yes |
| statistics | Json | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Cms_resource_statisticsCountAggregateOutputType | No |
| _avg | Cms_resource_statisticsAvgAggregateOutputType | No |
| _sum | Cms_resource_statisticsSumAggregateOutputType | No |
| _min | Cms_resource_statisticsMinAggregateOutputType | No |
| _max | Cms_resource_statisticsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Oa_change_logsCountAggregateOutputType | No |
| _avg | Oa_change_logsAvgAggregateOutputType | No |
| _sum | Oa_change_logsSumAggregateOutputType | No |
| _min | Oa_change_logsMinAggregateOutputType | No |
| _max | Oa_change_logsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| territory | String | Yes |
| function_name | String | Yes |
| mapping_id | String | Yes |
| sub_function_name | String | No |
| sub_mapping_id | String | No |
| comment | String | Yes |
| action | String | Yes |
| before | Json | No |
| after | Json | No |
| jira_no | String | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Oa_change_logsCountAggregateOutputType | No |
| _avg | Oa_change_logsAvgAggregateOutputType | No |
| _sum | Oa_change_logsSumAggregateOutputType | No |
| _min | Oa_change_logsMinAggregateOutputType | No |
| _max | Oa_change_logsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Oa_licensorCountAggregateOutputType | No |
| _avg | Oa_licensorAvgAggregateOutputType | No |
| _sum | Oa_licensorSumAggregateOutputType | No |
| _min | Oa_licensorMinAggregateOutputType | No |
| _max | Oa_licensorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| licensor_key | String | Yes |
| code | String | No |
| company_name | String | No |
| category | String | No |
| contact_name | String | No |
| contact_phone | String | No |
| contact_email | String | No |
| contact_mobile | String | No |
| s3_bucket_name | String | No |
| enable | Boolean | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Oa_licensorCountAggregateOutputType | No |
| _avg | Oa_licensorAvgAggregateOutputType | No |
| _sum | Oa_licensorSumAggregateOutputType | No |
| _min | Oa_licensorMinAggregateOutputType | No |
| _max | Oa_licensorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Oa_system_codeCountAggregateOutputType | No |
| _avg | Oa_system_codeAvgAggregateOutputType | No |
| _sum | Oa_system_codeSumAggregateOutputType | No |
| _min | Oa_system_codeMinAggregateOutputType | No |
| _max | Oa_system_codeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | Yes |
| territory | String | Yes |
| code_type_name | Json | No |
| show_sequence | Int | Yes |
| used_flag | Boolean | Yes |
| up_level_type | String | No |
| memo | String | No |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| code_type_name_local | String | No |
| code_type_name_eng | String | No |
| _count | Oa_system_codeCountAggregateOutputType | No |
| _avg | Oa_system_codeAvgAggregateOutputType | No |
| _sum | Oa_system_codeSumAggregateOutputType | No |
| _min | Oa_system_codeMinAggregateOutputType | No |
| _max | Oa_system_codeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Oa_system_code_detailCountAggregateOutputType | No |
| _avg | Oa_system_code_detailAvgAggregateOutputType | No |
| _sum | Oa_system_code_detailSumAggregateOutputType | No |
| _min | Oa_system_code_detailMinAggregateOutputType | No |
| _max | Oa_system_code_detailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| code_type | String | Yes |
| territory | String | Yes |
| code | String | Yes |
| code_group | String | No |
| value_type | String | No |
| code_name | Json | No |
| code_parameter | Json | No |
| show_sequence | Int | Yes |
| used_flag | Boolean | Yes |
| up_level_type | String | No |
| memo | String | No |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| code_name_local | String | No |
| code_name_eng | String | No |
| _count | Oa_system_code_detailCountAggregateOutputType | No |
| _avg | Oa_system_code_detailAvgAggregateOutputType | No |
| _sum | Oa_system_code_detailSumAggregateOutputType | No |
| _min | Oa_system_code_detailMinAggregateOutputType | No |
| _max | Oa_system_code_detailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Oa_task_jobCountAggregateOutputType | No |
| _avg | Oa_task_jobAvgAggregateOutputType | No |
| _sum | Oa_task_jobSumAggregateOutputType | No |
| _min | Oa_task_jobMinAggregateOutputType | No |
| _max | Oa_task_jobMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | Yes |
| task_label | String | Yes |
| job_name | String | Yes |
| task_name | String | Yes |
| task_target | String | Yes |
| execution_time | DateTime | No |
| execution_script | String | No |
| execution_log | Json | No |
| executed | Int | Yes |
| exec_start_date | DateTime | No |
| exec_end_date | DateTime | No |
| enable | Int | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Oa_task_jobCountAggregateOutputType | No |
| _avg | Oa_task_jobAvgAggregateOutputType | No |
| _sum | Oa_task_jobSumAggregateOutputType | No |
| _min | Oa_task_jobMinAggregateOutputType | No |
| _max | Oa_task_jobMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Oa_territoryCountAggregateOutputType | No |
| _avg | Oa_territoryAvgAggregateOutputType | No |
| _sum | Oa_territorySumAggregateOutputType | No |
| _min | Oa_territoryMinAggregateOutputType | No |
| _max | Oa_territoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| code | String | Yes |
| title | String | No |
| default_territory | String | Yes |
| language | String | Yes |
| default_language | String | Yes |
| timezone | String | No |
| priority | Int | No |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | Oa_territoryCountAggregateOutputType | No |
| _avg | Oa_territoryAvgAggregateOutputType | No |
| _sum | Oa_territorySumAggregateOutputType | No |
| _min | Oa_territoryMinAggregateOutputType | No |
| _max | Oa_territoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | System_functionCountAggregateOutputType | No |
| _min | System_functionMinAggregateOutputType | No |
| _max | System_functionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| menu_id | String | Yes |
| name | String | Yes |
| show_name | String | Yes |
| icon | String | No |
| type | String | Yes |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | System_functionCountAggregateOutputType | No |
| _min | System_functionMinAggregateOutputType | No |
| _max | System_functionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | System_menuCountAggregateOutputType | No |
| _avg | System_menuAvgAggregateOutputType | No |
| _sum | System_menuSumAggregateOutputType | No |
| _min | System_menuMinAggregateOutputType | No |
| _max | System_menuMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| cascade_id | String | No |
| name | String | Yes |
| pathname | String | Yes |
| icon | String | No |
| show_in_menu | Boolean | Yes |
| is_web_page | Boolean | Yes |
| is_need_login | Boolean | Yes |
| parent_id | String | No |
| table_memo | String | No |
| sort | Int | Yes |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | System_menuCountAggregateOutputType | No |
| _avg | System_menuAvgAggregateOutputType | No |
| _sum | System_menuSumAggregateOutputType | No |
| _min | System_menuMinAggregateOutputType | No |
| _max | System_menuMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | System_relevanceCountAggregateOutputType | No |
| _min | System_relevanceMinAggregateOutputType | No |
| _max | System_relevanceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| memo | String | No |
| type | String | Yes |
| first_id | String | Yes |
| second_id | String | Yes |
| third_id | String | No |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | System_relevanceCountAggregateOutputType | No |
| _min | System_relevanceMinAggregateOutputType | No |
| _max | System_relevanceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | System_roleCountAggregateOutputType | No |
| _min | System_roleMinAggregateOutputType | No |
| _max | System_roleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| code | String | Yes |
| name | String | Yes |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | System_roleCountAggregateOutputType | No |
| _min | System_roleMinAggregateOutputType | No |
| _max | System_roleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | System_userCountAggregateOutputType | No |
| _min | System_userMinAggregateOutputType | No |
| _max | System_userMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| provider_id | String | Yes |
| provider | String | Yes |
| display_name | String | Yes |
| family_name | String | Yes |
| given_name | String | Yes |
| String | Yes | |
| email_verified | Boolean | No |
| password | String | Yes |
| language | String | Yes |
| locale | String | No |
| picture | String | No |
| enable | Boolean | Yes |
| created_user | String | Yes |
| created_date | DateTime | Yes |
| updated_user | String | Yes |
| updated_date | DateTime | Yes |
| _count | System_userCountAggregateOutputType | No |
| _min | System_userMinAggregateOutputType | No |
| _max | System_userMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| userId | String | Yes |
| type | String | Yes |
| provider | String | Yes |
| providerAccountId | String | Yes |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| sessionToken | String | Yes |
| userId | String | Yes |
| expires | DateTime | Yes |
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | No |
| String | No | |
| emailVerified | DateTime | No |
| image | String | No |
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | VerificationTokenCountAggregateOutputType | No |
| _min | VerificationTokenMinAggregateOutputType | No |
| _max | VerificationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | Yes |
| token | String | Yes |
| expires | DateTime | Yes |
| _count | VerificationTokenCountAggregateOutputType | No |
| _min | VerificationTokenMinAggregateOutputType | No |
| _max | VerificationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| cms_category_mapping | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| territory | Int | Yes |
| key | Int | Yes |
| code | Int | Yes |
| title | Int | Yes |
| on_used | Int | Yes |
| sequence | Int | Yes |
| statistics | Int | Yes |
| parameter_values | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| key | String | No |
| code | String | No |
| on_used | Boolean | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| key | String | No |
| code | String | No |
| on_used | Boolean | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resource_id | Int | Yes |
| category_id | Int | Yes |
| parameter_values | Int | Yes |
| sequence | Int | Yes |
| enable | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| resource_id | Float | No |
| category_id | Float | No |
| sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| category_id | BigInt | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| category_id | BigInt | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| category_id | BigInt | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| licensor_id | Int | Yes |
| code | Int | Yes |
| handle | Int | Yes |
| title | Int | Yes |
| image | Int | Yes |
| description | Int | Yes |
| statistics | Int | Yes |
| parameter_values | Int | Yes |
| seo_info | Int | Yes |
| territory | Int | Yes |
| default_territory | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| title_en | Int | Yes |
| title_zhtw | Int | Yes |
| title_inid | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| licensor_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_id | BigInt | No |
| code | String | No |
| handle | String | No |
| territory | String | No |
| default_territory | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_id | BigInt | No |
| code | String | No |
| handle | String | No |
| territory | String | No |
| default_territory | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| cms_curation_mapping | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| key | Int | Yes |
| code | Int | Yes |
| title | Int | Yes |
| company_id | Int | Yes |
| territory | Int | Yes |
| default_territory | Int | Yes |
| status | Int | Yes |
| detail_parameter | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| title_en | Int | Yes |
| title_zhtw | Int | Yes |
| title_inid | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | No |
| code | String | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | No |
| status | String | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | No |
| code | String | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | No |
| status | String | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resource_id | Int | Yes |
| curation_id | Int | Yes |
| edited | Int | Yes |
| sequence | Int | Yes |
| parameter_values | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| resource_id | Float | No |
| curation_id | Float | No |
| sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| edited | Boolean | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| edited | Boolean | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| cms_curation_scheduling_item | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| curation_id | Int | Yes |
| title | Int | Yes |
| key | Int | Yes |
| territory | Int | Yes |
| description | Int | Yes |
| status | Int | Yes |
| published_date | Int | Yes |
| synchronized | Int | Yes |
| enabled | Int | Yes |
| created_user | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| curation_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| curation_id | BigInt | No |
| key | String | No |
| territory | String | No |
| description | String | No |
| status | String | No |
| published_date | DateTime | No |
| synchronized | Boolean | No |
| enabled | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| curation_id | BigInt | No |
| key | String | No |
| territory | String | No |
| description | String | No |
| status | String | No |
| published_date | DateTime | No |
| synchronized | Boolean | No |
| enabled | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| parent_id | Int | Yes |
| resource_id | Int | Yes |
| curation_id | Int | Yes |
| parameter_values | Int | Yes |
| sequence | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| parent_id | Float | No |
| resource_id | Float | No |
| curation_id | Float | No |
| sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parent_id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parent_id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| parent_id | BigInt | No |
| resource_id | BigInt | No |
| curation_id | BigInt | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| cms_hash_tag_mapping | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| title | Int | Yes |
| sequence | Int | Yes |
| statistics | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| title | String | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| title | String | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resource_id | Int | Yes |
| hash_tag_id | Int | Yes |
| parameter_values | Int | Yes |
| sequence | Int | Yes |
| enable | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| resource_id | Float | No |
| hash_tag_id | Float | No |
| sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| hash_tag_id | BigInt | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| hash_tag_id | BigInt | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| hash_tag_id | BigInt | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| key | Int | Yes |
| title | Int | Yes |
| sequence | Int | Yes |
| statistics | Int | Yes |
| parameter_values | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| title_en | Int | Yes |
| title_zhtw | Int | Yes |
| title_inid | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | No |
| sequence | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| mapping_type | Int | Yes |
| detail_mapping_id | Int | Yes |
| label_info_id | Int | Yes |
| parameter_values | Int | Yes |
| sequence | Int | Yes |
| enable | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| label_info_id | Float | No |
| sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| label_info_id | BigInt | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| mapping_type | String | No |
| detail_mapping_id | String | No |
| label_info_id | BigInt | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| mapping_type | String | No |
| detail_mapping_id | String | No |
| label_info_id | BigInt | No |
| sequence | Int | No |
| enable | Boolean | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resource_id | Int | Yes |
| territory | Int | Yes |
| published_date | Int | Yes |
| unpublished_date | Int | Yes |
| show_start_date | Int | Yes |
| show_end_date | Int | Yes |
| play_start_date | Int | Yes |
| play_end_date | Int | Yes |
| parameter_values | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| resource_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| territory | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| show_start_date | DateTime | No |
| show_end_date | DateTime | No |
| play_start_date | DateTime | No |
| play_end_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| territory | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| show_start_date | DateTime | No |
| show_end_date | DateTime | No |
| play_start_date | DateTime | No |
| play_end_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| cms_category_mapping | Int | Yes |
| cms_hash_tag_mapping | Int | Yes |
| cms_published_setting | Int | Yes |
| cms_resource_import_log | Int | Yes |
| cms_resource_parameter | Int | Yes |
| cms_resource_statistics | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| key | Int | Yes |
| code | Int | Yes |
| type | Int | Yes |
| title | Int | Yes |
| channel_code | Int | Yes |
| licensor_id | Int | Yes |
| company_id | Int | Yes |
| territory | Int | Yes |
| default_territory | Int | Yes |
| status | Int | Yes |
| partner_resource_id | Int | Yes |
| published_date | Int | Yes |
| unpublished_date | Int | Yes |
| enable | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| title_en | Int | Yes |
| title_zhtw | Int | Yes |
| title_inid | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| licensor_id | Float | No |
| enable | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_id | BigInt | No |
| enable | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | No |
| code | String | No |
| type | String | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | No |
| status | String | No |
| partner_resource_id | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| key | String | No |
| code | String | No |
| type | String | No |
| channel_code | String | No |
| licensor_id | BigInt | No |
| company_id | String | No |
| territory | String | No |
| default_territory | String | No |
| status | String | No |
| partner_resource_id | String | No |
| published_date | DateTime | No |
| unpublished_date | DateTime | No |
| enable | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| title_en | String | No |
| title_zhtw | String | No |
| title_inid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| partner_resource_id | Int | Yes |
| channel_code | Int | Yes |
| resource_id | Int | Yes |
| execute_process | Int | Yes |
| execute_status | Int | Yes |
| imp_result | Int | Yes |
| poster_import | Int | Yes |
| poster_type | Int | Yes |
| video_import | Int | Yes |
| oa_task_job_id | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| resource_id | Float | No |
| poster_import | Float | No |
| video_import | Float | No |
| oa_task_job_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| resource_id | BigInt | No |
| poster_import | Int | No |
| video_import | Int | No |
| oa_task_job_id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| partner_resource_id | String | No |
| channel_code | String | No |
| resource_id | BigInt | No |
| execute_process | String | No |
| execute_status | String | No |
| poster_import | Int | No |
| poster_type | String | No |
| video_import | Int | No |
| oa_task_job_id | BigInt | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| partner_resource_id | String | No |
| channel_code | String | No |
| resource_id | BigInt | No |
| execute_process | String | No |
| execute_status | String | No |
| poster_import | Int | No |
| poster_type | String | No |
| video_import | Int | No |
| oa_task_job_id | BigInt | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | Int | Yes |
| territory | Int | Yes |
| master_code | Int | Yes |
| master_key | Int | Yes |
| master_type | Int | Yes |
| video_id | Int | Yes |
| duration | Int | Yes |
| show_direction | Int | Yes |
| sub_statuses | Int | Yes |
| detail | Int | Yes |
| description | Int | Yes |
| player_info | Int | Yes |
| posters | Int | Yes |
| category_info | Int | Yes |
| label_info | Int | Yes |
| hash_tag_info | Int | Yes |
| seo_info | Int | Yes |
| parameter_values | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| artwork_status | Int | Yes |
| transcoding_status | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| resource_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| master_code | String | No |
| master_key | String | No |
| master_type | String | No |
| video_id | String | No |
| duration | String | No |
| show_direction | String | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| artwork_status | String | No |
| transcoding_status | String | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| master_code | String | No |
| master_key | String | No |
| master_type | String | No |
| video_id | String | No |
| duration | String | No |
| show_direction | String | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| artwork_status | String | No |
| transcoding_status | String | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | Int | Yes |
| territory | Int | Yes |
| statistics | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| resource_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| resource_id | BigInt | No |
| territory | String | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| territory | Int | Yes |
| function_name | Int | Yes |
| mapping_id | Int | Yes |
| sub_function_name | Int | Yes |
| sub_mapping_id | Int | Yes |
| comment | Int | Yes |
| action | Int | Yes |
| before | Int | Yes |
| after | Int | Yes |
| jira_no | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| function_name | String | No |
| mapping_id | String | No |
| sub_function_name | String | No |
| sub_mapping_id | String | No |
| comment | String | No |
| action | String | No |
| jira_no | String | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| territory | String | No |
| function_name | String | No |
| mapping_id | String | No |
| sub_function_name | String | No |
| sub_mapping_id | String | No |
| comment | String | No |
| action | String | No |
| jira_no | String | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| licensor_key | Int | Yes |
| code | Int | Yes |
| company_name | Int | Yes |
| category | Int | Yes |
| contact_name | Int | Yes |
| contact_phone | Int | Yes |
| contact_email | Int | Yes |
| contact_mobile | Int | Yes |
| s3_bucket_name | Int | Yes |
| enable | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_key | String | No |
| code | String | No |
| company_name | String | No |
| category | String | No |
| contact_name | String | No |
| contact_phone | String | No |
| contact_email | String | No |
| contact_mobile | String | No |
| s3_bucket_name | String | No |
| enable | Boolean | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| licensor_key | String | No |
| code | String | No |
| company_name | String | No |
| category | String | No |
| contact_name | String | No |
| contact_phone | String | No |
| contact_email | String | No |
| contact_mobile | String | No |
| s3_bucket_name | String | No |
| enable | Boolean | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| code_type | Int | Yes |
| territory | Int | Yes |
| code_type_name | Int | Yes |
| show_sequence | Int | Yes |
| used_flag | Int | Yes |
| up_level_type | Int | Yes |
| memo | Int | Yes |
| enable | Int | Yes |
| created_user | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| code_type_name_local | Int | Yes |
| code_type_name_eng | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| show_sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| show_sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | No |
| territory | String | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | No |
| memo | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_type_name_local | String | No |
| code_type_name_eng | String | No |
| Name | Type | Nullable |
|---|---|---|
| code_type | String | No |
| territory | String | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | No |
| memo | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_type_name_local | String | No |
| code_type_name_eng | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| code_type | Int | Yes |
| territory | Int | Yes |
| code | Int | Yes |
| code_group | Int | Yes |
| value_type | Int | Yes |
| code_name | Int | Yes |
| code_parameter | Int | Yes |
| show_sequence | Int | Yes |
| used_flag | Int | Yes |
| up_level_type | Int | Yes |
| memo | Int | Yes |
| enable | Int | Yes |
| created_user | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| code_name_local | Int | Yes |
| code_name_eng | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| show_sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| show_sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| code_type | String | No |
| territory | String | No |
| code | String | No |
| code_group | String | No |
| value_type | String | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | No |
| memo | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_name_local | String | No |
| code_name_eng | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| code_type | String | No |
| territory | String | No |
| code | String | No |
| code_group | String | No |
| value_type | String | No |
| show_sequence | Int | No |
| used_flag | Boolean | No |
| up_level_type | String | No |
| memo | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| code_name_local | String | No |
| code_name_eng | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| task_label | Int | Yes |
| job_name | Int | Yes |
| task_name | Int | Yes |
| task_target | Int | Yes |
| execution_time | Int | Yes |
| execution_script | Int | Yes |
| execution_log | Int | Yes |
| executed | Int | Yes |
| exec_start_date | Int | Yes |
| exec_end_date | Int | Yes |
| enable | Int | Yes |
| created_user | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| executed | Float | No |
| enable | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| executed | Int | No |
| enable | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| task_label | String | No |
| job_name | String | No |
| task_name | String | No |
| task_target | String | No |
| execution_time | DateTime | No |
| execution_script | String | No |
| executed | Int | No |
| exec_start_date | DateTime | No |
| exec_end_date | DateTime | No |
| enable | Int | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | BigInt | No |
| task_label | String | No |
| job_name | String | No |
| task_name | String | No |
| task_target | String | No |
| execution_time | DateTime | No |
| execution_script | String | No |
| executed | Int | No |
| exec_start_date | DateTime | No |
| exec_end_date | DateTime | No |
| enable | Int | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| code | Int | Yes |
| title | Int | Yes |
| default_territory | Int | Yes |
| language | Int | Yes |
| default_language | Int | Yes |
| timezone | Int | Yes |
| priority | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| priority | Float | No |
| Name | Type | Nullable |
|---|---|---|
| priority | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| title | String | No |
| default_territory | String | No |
| language | String | No |
| default_language | String | No |
| timezone | String | No |
| priority | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| title | String | No |
| default_territory | String | No |
| language | String | No |
| default_language | String | No |
| timezone | String | No |
| priority | Int | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| menu_id | Int | Yes |
| name | Int | Yes |
| show_name | Int | Yes |
| icon | Int | Yes |
| type | Int | Yes |
| enable | Int | Yes |
| created_user | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| menu_id | String | No |
| name | String | No |
| show_name | String | No |
| icon | String | No |
| type | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| menu_id | String | No |
| name | String | No |
| show_name | String | No |
| icon | String | No |
| type | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| cascade_id | Int | Yes |
| name | Int | Yes |
| pathname | Int | Yes |
| icon | Int | Yes |
| show_in_menu | Int | Yes |
| is_web_page | Int | Yes |
| is_need_login | Int | Yes |
| parent_id | Int | Yes |
| table_memo | Int | Yes |
| sort | Int | Yes |
| enable | Int | Yes |
| created_user | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| sort | Float | No |
| Name | Type | Nullable |
|---|---|---|
| sort | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cascade_id | String | No |
| name | String | No |
| pathname | String | No |
| icon | String | No |
| show_in_menu | Boolean | No |
| is_web_page | Boolean | No |
| is_need_login | Boolean | No |
| parent_id | String | No |
| table_memo | String | No |
| sort | Int | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| cascade_id | String | No |
| name | String | No |
| pathname | String | No |
| icon | String | No |
| show_in_menu | Boolean | No |
| is_web_page | Boolean | No |
| is_need_login | Boolean | No |
| parent_id | String | No |
| table_memo | String | No |
| sort | Int | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| memo | Int | Yes |
| type | Int | Yes |
| first_id | Int | Yes |
| second_id | Int | Yes |
| third_id | Int | Yes |
| enable | Int | Yes |
| created_user | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| memo | String | No |
| type | String | No |
| first_id | String | No |
| second_id | String | No |
| third_id | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| memo | String | No |
| type | String | No |
| first_id | String | No |
| second_id | String | No |
| third_id | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| code | Int | Yes |
| name | Int | Yes |
| enable | Int | Yes |
| created_user | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| name | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| code | String | No |
| name | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| provider_id | Int | Yes |
| provider | Int | Yes |
| display_name | Int | Yes |
| family_name | Int | Yes |
| given_name | Int | Yes |
| Int | Yes | |
| email_verified | Int | Yes |
| password | Int | Yes |
| language | Int | Yes |
| locale | Int | Yes |
| picture | Int | Yes |
| enable | Int | Yes |
| created_user | Int | Yes |
| created_date | Int | Yes |
| updated_user | Int | Yes |
| updated_date | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_id | String | No |
| provider | String | No |
| display_name | String | No |
| family_name | String | No |
| given_name | String | No |
| String | No | |
| email_verified | Boolean | No |
| password | String | No |
| language | String | No |
| locale | String | No |
| picture | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_id | String | No |
| provider | String | No |
| display_name | String | No |
| family_name | String | No |
| given_name | String | No |
| String | No | |
| email_verified | Boolean | No |
| password | String | No |
| language | String | No |
| locale | String | No |
| picture | String | No |
| enable | Boolean | No |
| created_user | String | No |
| created_date | DateTime | No |
| updated_user | String | No |
| updated_date | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| type | Int | Yes |
| provider | Int | Yes |
| providerAccountId | Int | Yes |
| refresh_token | Int | Yes |
| access_token | Int | Yes |
| expires_at | Int | Yes |
| token_type | Int | Yes |
| scope | Int | Yes |
| id_token | Int | Yes |
| session_state | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| expires_at | Float | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| sessionToken | Int | Yes |
| userId | Int | Yes |
| expires | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| accounts | Int | Yes |
| sessions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| Int | Yes | |
| emailVerified | Int | Yes |
| image | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| emailVerified | DateTime | No |
| image | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| emailVerified | DateTime | No |
| image | String | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | Int | Yes |
| token | Int | Yes |
| expires | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |